diff --git a/Source/_defaults/posts.md b/Source/_defaults/posts.md index db74bf5..8146076 100644 --- a/Source/_defaults/posts.md +++ b/Source/_defaults/posts.md @@ -1,7 +1,5 @@ --- layout: post.liquid - title: new post... is_draft: true --- - diff --git a/Source/_layouts/post.liquid b/Source/_layouts/post.liquid index 44a4711..af6dae4 100644 --- a/Source/_layouts/post.liquid +++ b/Source/_layouts/post.liquid @@ -1,6 +1,6 @@ {% include "header.liquid" %}

{{ page.title }}

-

Published on: {{ page.published_date | date: "%A, %B %d %Y" }}, GMT+6:30

+

Published on: {{ page.published_date | date: "%A, %B %d %Y at %r" }}, GMT+6:30

{{ page.content }} diff --git a/Source/blog/New-Chapter-Begins.md b/Source/blog/New-Chapter-Begins.md index 46a66fe..049a703 100644 --- a/Source/blog/New-Chapter-Begins.md +++ b/Source/blog/New-Chapter-Begins.md @@ -3,7 +3,6 @@ title: A New Chapter Begins published_date: 2024-08-28 16:48:00 +0630 layout: post.liquid is_draft: false -permalink: /blog/new-chapter-begins --- Hello everyone. This is the first blog post, and I wanted to share an update on my current situation. diff --git a/_cobalt.yml b/_cobalt.yml index 5d70277..968ba4f 100644 --- a/_cobalt.yml +++ b/_cobalt.yml @@ -6,8 +6,13 @@ site: description: Harry Min Khant base_url: https://harrymkt.github.io sitemap: sitemap.xml - +pages: + default: + permalink: /{{parent}}/{{name}} + posts: title: Blog - description: Blog - dir: blog \ No newline at end of file + description: Here I will share my personal posts. + dir: blog + default: + permalink: /{{parent}}/{{name}} \ No newline at end of file