diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-10-28 07:39:20 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-10-28 11:11:20 +0200 |
commit | a768a7fa84577a5975fa782dd81cdab066dcff12 (patch) | |
tree | 14868bf9073c1b6d2f2fc861a0e4cac192c51f8c /_layouts/post.html | |
parent | posts: right-align the date (diff) | |
download | jekyll-theme-a768a7fa84577a5975fa782dd81cdab066dcff12.tar.gz jekyll-theme-a768a7fa84577a5975fa782dd81cdab066dcff12.zip |
posts: redesign feed again
Put dates on the left, this looks nicer.
Diffstat (limited to '_layouts/post.html')
-rw-r--r-- | _layouts/post.html | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/_layouts/post.html b/_layouts/post.html index 674b810..dcf667a 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -1,6 +1,17 @@ --- layout: default --- -{% include jekyll-theme/posts/header.html title=page.title date=page.date category=page.category %} +{% capture date %}{%- include jekyll-theme/posts/date.html date=page.date monospace=true -%}{% endcapture %} + +{% assign category = "" %} +{% if page.category %} + {% capture category %}{%- include jekyll-theme/categories/label.html link=true category=page.category monospace=true -%} {% endcapture %} +{% endif %} + +{% capture date %}{{ category }}{{ date }}{% endcapture %} + +{% capture title %}<h1>{{ page.title }}</h1>{% endcapture %} + +{% include jekyll-theme/flex-header.html title=title right=date %} {{ content }} {% include jekyll-theme/sidebar/sep.html %} |