diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/page.html | 2 | ||||
-rw-r--r-- | templates/weblog.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/page.html b/templates/page.html index 4cf03c7..54b049f 100644 --- a/templates/page.html +++ b/templates/page.html @@ -48,7 +48,7 @@ {% endif %} {% endblock %} {% block content %} - <div class="post-container"> + <div class="post-container full"> {{ page.content | safe }} </div> {% endblock %} diff --git a/templates/weblog.html b/templates/weblog.html index f9889af..6638faf 100644 --- a/templates/weblog.html +++ b/templates/weblog.html @@ -48,7 +48,7 @@ {% block content %} <div class="posts-list"> {% for post in paginator.pages %} - <div class="post-container"> + <div class="post-container partial"> <h2> <a href="{{ post.permalink }}">{{ post.title }}</a> <span class="publish-date">{{ post.date | date }}</span> |