From d37e8019bc8a7297ab45f3b973dcae2a8f065454 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sun, 18 Feb 2018 04:56:47 +0300 Subject: code style --- _layouts/post.html | 5 ++++- index.html | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/_layouts/post.html b/_layouts/post.html index 69bd4db..df526e1 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -2,7 +2,10 @@

{{ page.title }}

-

 Posted on {{ page.date | date_to_long_string }}{% if page.category %} in  {{ page.category }}{% endif %}

+

+  Posted on {{ page.date | date_to_long_string }} + {%- if page.category %} in  {{ page.category }}{% endif %} +

{{ content }}
diff --git a/index.html b/index.html index 53f5da7..46cfdef 100644 --- a/index.html +++ b/index.html @@ -12,7 +12,10 @@ root_page: true {% else %} {% for post in paginator.posts %}

{{ post.title }}

-

 Posted on {{ post.date | date_to_long_string }}{% if post.category %} in  {{ post.category }}{% endif %}

+

+  Posted on {{ post.date | date_to_long_string }} + {%- if post.category %} in  {{ post.category }}{% endif %} +

{{ post.excerpt }}


{% endfor %} -- cgit v1.2.3