aboutsummaryrefslogtreecommitdiff
path: root/crumbs/templates/article_header.html
diff options
context:
space:
mode:
Diffstat (limited to 'crumbs/templates/article_header.html')
-rw-r--r--crumbs/templates/article_header.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/crumbs/templates/article_header.html b/crumbs/templates/article_header.html
new file mode 100644
index 0000000..a4412e5
--- /dev/null
+++ b/crumbs/templates/article_header.html
@@ -0,0 +1,27 @@
+<!-- <div class="article-title">
+ <p>< Back</p>
+</div> -->
+
+<div class="article-title text-right">
+
+ {% if in_article == true %}
+ <div class="pull-left">
+ <h3><a href="{{ SITEURL }}/{{ article.category|lower }}"> ⇠ Back</a></h3>
+ </div>
+ {% endif %}
+
+ <div class="pull-right">
+ <p>
+ {% if article.tags|length > 0 %}
+ {% for tag in article.tags|sort %}
+ <strong>{{ tag }} |</strong>
+ {% endfor %}
+ Tags
+ {% endif %}
+ </p>
+ <p>Published <span class="tc-brown"><strong>{{ article.locale_date }}</strong></span></p>
+ <p>This article takes <span class="tc-brown"><strong>{{article.read_time_string}}</strong></span> to read.</p>
+ </div>
+
+</div>
+<hr /> \ No newline at end of file