Jekyll post template and other things
First six lines
---
layout: post
title: Title
date: 2020-01-30
category: category
---
Latex: Include code beween $$...$$
.
Running the Jekyll server
- Go to root directory. This is the place where
_posts
directory is located. - Run the command
bundle exec jekyll serve
. - Open a browser and type the url:
127.0.0.1:4000
Pushing to github
- Go to
_posts
directory git add <filenames>
git commit -m "<Message>"
git push -u origin master