diff options
Diffstat (limited to '_layouts')
-rw-r--r-- | _layouts/default.html | 2 | ||||
-rw-r--r-- | _layouts/home.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/_layouts/default.html b/_layouts/default.html index 1d57e03..cc2c463 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -6,7 +6,7 @@ {% include header.html %} <div class="page-content"> - <div class="container"> + <div class="container {{page.layout}}"> {% if page.sidebar %} <div class="col-xs-12 col-md-8"> {{ content }} diff --git a/_layouts/home.html b/_layouts/home.html index e86425a..8cd68e1 100644 --- a/_layouts/home.html +++ b/_layouts/home.html @@ -8,7 +8,7 @@ sidebar: sb_sidebar_news.html <h2><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h2> {% include postmeta.html node=post %} {{ post.excerpt }}{% - if post.excerpt != post.content %}<a href="{{ site.baseurl }}{{ post.url }}">Read more...</a> the Irssi Team.{% + if post.excerpt != post.content %}<p><a href="{{ site.baseurl }}{{ post.url }}">Read more...</a> the Irssi Team.</p>{% endif %} {% endfor %} |