diff options
Diffstat (limited to 'src/templates/journal.html')
-rw-r--r-- | src/templates/journal.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/templates/journal.html b/src/templates/journal.html index 33856c1..4c1b47f 100644 --- a/src/templates/journal.html +++ b/src/templates/journal.html @@ -9,14 +9,16 @@ <article itemscope itemtype="http://schema.org/Article" class="entry{% if entry.dropcap %} dropcap{% endif %}" id="entry:{{ entry.id }}"> - <h2 itemprop="name" class="title"><a href="#entry:{{ entry.id }}">{{ entry.title }}</a></h2> + <h2 itemprop="name" class="title"> + <a href="journal/{{ entry.page }}">{{ entry.title }}</a> + <a href="#entry:{{ entry.id }}" class="permalink">§</a> + </h2> <div class="info"> Published on <time itemprop="datePublished" datetime="{{ entry.date.strftime('%Y-%m-%d') }}"> {{ entry.date.strftime('%Y-%m-%d') }} </time> - <a href="journal/{{ entry.page }}">[permalink]</a> </div> {{ entry.body }} |