summaryrefslogtreecommitdiffstats
path: root/src/templates/journal.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/templates/journal.html')
-rw-r--r--src/templates/journal.html14
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 %}