aboutsummaryrefslogtreecommitdiff
path: root/crumbs/templates
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2018-01-22 14:47:08 +0100
committerKatharina Fey <kookie@spacekookie.de>2018-01-22 14:47:08 +0100
commitf052fe2b2811bb609a6ef1413f83435973b698ec (patch)
tree468b96176c8bbedd793bf25e5363f97bec6c0f72 /crumbs/templates
parenta8f43af83bf72f2c3f1291b3235a3552a17b6659 (diff)
Making the article easier to read
Diffstat (limited to 'crumbs/templates')
-rwxr-xr-xcrumbs/templates/article.html22
1 files changed, 19 insertions, 3 deletions
diff --git a/crumbs/templates/article.html b/crumbs/templates/article.html
index e5a6c9e..50e0da1 100755
--- a/crumbs/templates/article.html
+++ b/crumbs/templates/article.html
@@ -6,9 +6,25 @@
{% block content %}
- <p>This article takes {{article.read_time_string}} to read.</p>
+<dl class="dl-horizontal">
+ <div class="card">
- <div class="col-lg-9 content">
+ <h1>{{ article.title }}</h1>
+
+ <div class="pull-right">
+ <p class="timer">This article takes {{article.read_time_string}} to read.</p>
+ </div>
+ <br/>
+ <hr />
+
+ {{ article.content }}
+ </div>
+</dl>
+
+
+
+
+ <!-- <div class="col-lg-9 content">
{{ article.content }}
{% if article.related_posts %}
@@ -20,5 +36,5 @@
{% endfor %}
</dl>
{% endif %}
- </div>
+ </div> -->
{% endblock %}