layout | title | |
---|---|---|
default |
|
Jekyll transforms plain text into static websites and blogs. Here, we will briefly cover how to override Jekyll's layout and write content.
Our Jekyll installation uses Liquid for template processing. You can learn more about overriding default You can also add any of your modifications there.
All images can be placed in the images directory under a logical organizational structure, as needed. If you have videos, you can create a videos directory and it should be likewise detected and added to the generated web content. You can learn how to reference images in the Markdown Cheatsheet.
You can learn more about how to customize Jekyll here.
Our Jekyll configuration uses the Kramdown engine for Markdown processing. You can find many references online to help you get started like the Markdown Cheatsheet. Markdown allows you to apply structure to your text documents. The Kramdown engine will process all *.md files into html and place them in the _site directory to be served as web content. You can place all of your Markdown files in the root of the project directory.
You will see that this template structure contains index.md, background.md, setup.md, etc. These can be used as examples.