diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2016-08-07 20:42:39 +0200 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2016-08-07 20:42:39 +0200 |
commit | 8ae7c7a1f817f31d41852a54aaa4f26509c0ebb3 (patch) | |
tree | 5b793a23d2db9dbd1d0df3586d06c24036241a35 /src/templates/journal.html | |
parent | 1f8bbfd2ea30b11c4627546462f47f1c01113713 (diff) | |
download | website-8ae7c7a1f817f31d41852a54aaa4f26509c0ebb3.tar.xz |
Revamp something
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
Diffstat (limited to 'src/templates/journal.html')
-rw-r--r-- | src/templates/journal.html | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/src/templates/journal.html b/src/templates/journal.html index 36abb93..6e673a2 100644 --- a/src/templates/journal.html +++ b/src/templates/journal.html @@ -16,21 +16,19 @@ <time itemprop="datePublished" datetime="{{ entry.date.strftime('%Y-%m-%d') }}"> {{ entry.date.strftime('%Y-%m-%d') }} </time> + </div> + + {{ entry.body }} + <div class="botinfo"> <span itemprop="author" itemscope itemtype="http://schema.org/Person"> {% if entry.author_link %} - by <a itemprop="name" rel="author" href="{{ entry.author_link }}">{{ entry.author }}</a> + — <a itemprop="name" rel="author" href="{{ entry.author_link }}">{{ entry.author }}</a> {% else %} - by {{ entry.author }} + — {{ entry.author }} {% endif %} </span> </div> - - {{ entry.body }} - - <div class="botinfo"> - <a href="journal/{{ entry.page }}#isso-thread">comments</a> - </div> </article> {% endfor %} {% endblock content %} |