-
Create a .markdown file inside _posts folder.
-
Name the file according to the standard jekyll format.
2016-03-30-i-love-design.markdown
-
Write the Front Matter and content in the file.
--- layout: post | default | page title: String Post Title date: Time Stamp categories: String | Array of Strings Category / Categories ---
--- layout: post title: "The One with the Blackout" date: 2016-03-30 19:45:31 +0530 categories: ["life", "friends"] ---
- Create a .md file in the root directory.
- Name the file with the desired page link name.
about.md
design.md
- Write the Front Matter and content in the file.
---
layout: page
title: String Title of the webpage
permalink: / String / Permalink for the webpage
tagline: String Optional DevJournal Feature : Tagline for the page
---
---
layout: page
title: "Science"
permalink: /science/
tagline : "Humanity is overrated."
---
Instructions for Ubuntu:
- Installation (do it only once):
sudo apt-get install ruby-full build-essential zlib1g-dev
echo 'export GEM_HOME="$HOME/gems"' >> ~/.bashrc
echo 'export PATH="$HOME/gems/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc
gem install jekyll bundler
- Rebuilding and launching preview server:
bundle install
bundle exec jekyll serve
If you have any trouble or find any bug, please report an issue in this location. To create the issue, from the list of available templates select the one, that fits best the nature of the issue (bug, feature, question or task) and fill it.