From 7f02962f5502bb581f0b50d534be0bcea0a739b2 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sat, 25 Jun 2016 02:13:47 +0300 Subject: move common assets to common/, more info to config --- _layouts/main.html | 6 +++--- _layouts/post.html | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) (limited to '_layouts') diff --git a/_layouts/main.html b/_layouts/main.html index 920cbd9..f151314 100644 --- a/_layouts/main.html +++ b/_layouts/main.html @@ -1,10 +1,10 @@ -{% include header.html %} +{% include common/header.html %}
{{ content }}
- {% include sidebar.html %} + {% include common/sidebar.html %}
-{% include footer.html %} +{% include common/footer.html %} diff --git a/_layouts/post.html b/_layouts/post.html index 4b05318..9d91204 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -1,14 +1,14 @@ -{% include header.html %} +{% include common/header.html %}

{{ page.title }}

Posted on {{ page.date | date_to_long_string }}

{{ content }}
- {% include comments.html %} + {% include posts/comments.html %}
- {% include sidebar.html %} + {% include common/sidebar.html %}
-{% include footer.html %} +{% include common/footer.html %} -- cgit v1.2.3