-
Notifications
You must be signed in to change notification settings - Fork 0
Home
This project is based upon the 'Jekyll' website generator. Using this project, you can create minimal, static, blog style posts using only the Markdown format.
This project has been configured to serve these posts under the URL https://takesinsight.com
Before publishing our content to the world, we may make several iterations and get collaboration from others. Follow these steps
- clone the repository locally
- create a branch with your post name eg posts/2021-02-01-azure-blah-blah
- write your post!
- add images to the /assets/images folder and reference in your post e.g.
<img src="/assets/images/your-title/your-image.png">
- put up a PR back to main branch
- confirm the format looks good by going to your GitHub pull request and viewing your new .md file online
- request teammates to review your post.
- push any requested changes to the branch which will update the PR
- merge to publish your post and view on takesinsight.com
Posts are authored in markdown and must have the .md
file extension. Jekyll automatically finds and list our files based the filename. Files must use the following naming convention:
YYYY-MM-DD-title.md
i.e. 2021-02-01-first-post.md
- Dont work directly on
main
and be aware of GitHub Pages limits. - There is a soft limit of 10 builds per hour. If you exceed this, your content may not be visible. Full usage limits are available at docs.github.com/.../about-github-pages
- Ensure your name is in the authors list
- Have a look at existing posts in the _posts folder for examples
Jekyll files start with Front Matter. This is a YAML block that tells Jekyll about our file. At minimum, you post should include the below Front Matter.
---
layout: post
title: 'Your groovy title'
category: posts
author: your author name (see authors.yaml) e.g. psmithdale
tags: put in category tags for users to filter on. e.g. azure cosmosdb (or make a new one)
---
More information on Front Matter can be found here
Please refer to the Markdown guide hosted at https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet to see an example of permitted markup.
To ensure correct structure of your post, consider the following header recommendations.
- Site Title: uses H1
#
- Post Title: uses H2
##
- Your post sections should use H3
###
and below
Update this wiki to help others.
Happy blogging!