In this my first blog post (oujee! 🤓😎), I describe how to combine Jekyll and GitHub Pages to make a blog post. Briefly, you should
_post
folderYEAR-MONTH-DAY-title.md
, for example this post is named as 2025-03-01-learn-write-posts.md
and write your contentRemember to start all your blog post files with the front matter that sets a layout or other meta data, example this blog post file starts with the following
---
layout: post
title: "How to start blogging using GitHub Pages"
date: 2025-03-01
last_modified_at: 2025-03-03
categories: [blogging]
tags: [GitHub Pages, Jekyll, Blogging]
---
I had problems to have any theme applied to blog post (I used merlot theme in my main page). In this case, you can
_layouts
folder if you do not have it alreadypost.html
file there with the proper content, see example belowMy post.html includes following
---
layout: default
---
<article class="post">
<h1>{{ page.title }}</h1>
<p><em>Published on {{ page.date | date: "%B %d, %Y" }}</em>
{% if page.last_modified_at %}
<em> (Updated on {{ page.last_modified_at | date: "%B %d, %Y" }})</em>
{% endif %}
</p>
{% if page.tags %}
<p>
<strong>Tags:</strong>
{% for tag in page.tags %}
<span style="color:blue;">{{ tag }}</span>{% unless forloop.last %}, {% endunless %}
{% endfor %}
</p>
{% endif %}
<div class="content">
{{ content }}
</div>
<a href="{{ site.baseurl }}/blog/" style="color:green;">
<strong>⬅ To My Blog list</strong>
</a>
<br>
<a href="{{ site.baseurl }}/" style="color:green">
<strong>⬅ To My Main Page</strong>
</a>
</article>
You can create list of your post with the following command, see more info on Jekyll’s documentation about posts. I included following code in my main page to list only my recent blog posts; with parameter in the for-loop, limit:5
you can control how many posts are listed. If you want to list all your post, like I have done in my blog archieve page, just remove limit:5
in the for loop row.
<ul>
{% for post in site.posts limit:5 %}
<li>
<a href="{{ post.url | relative_url }}">{{ post.title }}</a>
<em>({{ post.date | date: "%B %d, %Y" }})</em>
</li>
{% endfor %}
</ul>
📝 Happy blogging! 😊