Website for the ZecHub DAO
This site is built with Jekyll. To add a post:
- Create a new file in your
_posts
directory with the following format:YEAR-MONTH-DAY-title.MARKUP
. The year, month, and day should be numbers, and the title should be separated by hyphens. The markup can be either.md
or.html
, depending on whether you want to write your post in Markdown or HTML. - Add the front matter to your file. This is a YAML block that contains metadata about your post, such as the title, date, and author. Here's an example:
---
layout: post
title: “My First Post”
date: 2023-04-11 14:00:00 +0000
author: John Doe
---
- Write your post content below the front matter. You can use Markdown or HTML to format your text. Your file will look like this:
---
layout: post
title: “My First Post”
date: 2023-04-11 14:00:00 +0000
author: John Doe
---
This is my first paragraph.
This is my first list:
- First item
- Second item
- Third item
- Save your file and commit it to your repository.
Consult Jekyll docs for more details on how to write a post for this blog.