Creating your first post in Jekyll Estimated reading: 1 minute 50 views Contributors Create Post File To create a new post, you can create a new markdown file inside the _posts directory by following the recommended file naming format: YEAR-MONTH-DAY-title.MARKUP Where YEAR is a four-digit number, MONTH and DAY are both two-digit numbers, and MARKUP is the file extension representing the format used in the file. For example, the following are examples of valid post filenames: 2011-12-31-new-years-eve-is-awesome.md 2012-09-12-how-to-write-a-blog.md Post Front Matter Post requires front matter, everything in between the first and second — are part of the YAML Front Matter, and everything after the second — will be rendered with Markdown and show up as “Content”. The following is a post file with different configurations you can add as example: --- layout: post title: How To Travel On Low Budget author: Indigo Violet avatar: img/blog-classic/author_4.jpg category: [Travel] timeToRead: 18 Min Read post_img: img/blog-classic/classic_03.jpg --- You can rebuild the site in many different ways, but the most common way is to run bundle exec jekyll serve, which launches a web server and auto-regenerates your site when a file is updated. To keep things more organized, add post images to /img/blog-classic/ directory Getting Started - Previous Basic Theme Setup Next - Getting Started Creating docs posts