Skip to the content.

Home / Step 4

Step 4: Customize Your Jekyll Site

  1. Modify _config.yml to add site details:

     title: My Awesome Site
     description: A blog about tech and coding
    
  2. Add these three line for Blog Post list

             {% for post in site.posts %}
               - [{{ post.title }}]({{ post.url }}) ({{ post.date | date: "%B %d, %Y" }})
             {% endfor %}
    

Next: Step 5