summaryrefslogtreecommitdiffstats
path: root/blog.html
diff options
context:
space:
mode:
authorfarthen <monkey@farthen.de>2013-09-05 00:11:44 +0200
committerfarthen <monkey@farthen.de>2013-09-05 00:11:44 +0200
commit2604d93350867ccf6f434d93d51793c7f7acee69 (patch)
tree1db2653bb422578eeea8cbade73bb0fff96e6eec /blog.html
parentc963846bc3d0bbc5901ffb2f1110111f9e0d1fc9 (diff)
downloadwww-2604d93350867ccf6f434d93d51793c7f7acee69.tar.gz
www-2604d93350867ccf6f434d93d51793c7f7acee69.tar.bz2
www-2604d93350867ccf6f434d93d51793c7f7acee69.zip
blog.html: Make entry titles wrap correctly at small display sizes
Diffstat (limited to 'blog.html')
-rw-r--r--blog.html6
1 files changed, 4 insertions, 2 deletions
diff --git a/blog.html b/blog.html
index 9b67839..c5e83e9 100644
--- a/blog.html
+++ b/blog.html
@@ -9,11 +9,13 @@
<div class="blog-year">
<h3>{{ year }}</h3>
{% for post in entries %}
- <p>
+ <p class="blog-entry">
<div class="entry-date">
{{ post.date.strftime('%B %d') }}
</div>
- <a href="{{ post.get_url() }}">{{ post.title }}</a>
+ <div class="entry-title">
+ <a href="{{ post.get_url() }}">{{ post.title }}</a>
+ </div>
</p>
{% endfor %}
</div>