diff options
Diffstat (limited to 'templates/weblog.html')
-rw-r--r-- | templates/weblog.html | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/templates/weblog.html b/templates/weblog.html index a20f356..88abf61 100644 --- a/templates/weblog.html +++ b/templates/weblog.html @@ -2,8 +2,11 @@ {% block content %} <div class="posts-list"> {% for post in paginator.pages %} - <div class="post-preview"> - <h2><a href="{{ post.permalink }}">{{ post.title }}</a></h2> + <div class="post-container"> + <h2> + <a href="{{ post.permalink }}">{{ post.title }}</a> + <span class="publish-date">{{ post.date | date }}</span> + </h2> {% if post.summary %} {{ post.summary | safe }} {% endif %} |