Skip to content

Latest commit

 

History

History
45 lines (31 loc) · 1.35 KB

README.md

File metadata and controls

45 lines (31 loc) · 1.35 KB

Contribute

Want to contribute? Fork the repository first by clicking "fork" in the upper right. Then, clone your own fork to your desktop:

$ git clone https://github.com/yourgithubusername/Huizerd.github.io.git

Create a Markdown file with the extension .md and the date and a short subject indicator in the title:

$ cd Huizerd.github.io
$ touch yyyy-mm-dd-yourpost.md

Adhere to the following template and the general Markdown rules and your post will look great!

---
layout: post
title: "Title of your post"
date: yyyy-mm-dd
categories: maincategory subcategory
---

Bla bla bla

### Use level 3 headers as main headers in your post

Bla bla bla interesting stuff

#### And level 4+ for any subheaders

In case you're not sure, look at a post in the _posts directory and view its raw code with the button in the upper right!

When your post is done, add your changes, commit them to your local repository, and push them to GitHub:

$ git add -A  # add everything
$ git commit -m "commit message here"  # commit changes
$ git push origin master  # push to GitHub

Next, open a pull request here, and your post will be added!