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.html37
1 files changed, 15 insertions, 22 deletions
diff --git a/crumbs/templates/article_header.html b/crumbs/templates/article_header.html
index a4412e5..4f265b7 100644
--- a/crumbs/templates/article_header.html
+++ b/crumbs/templates/article_header.html
@@ -2,26 +2,19 @@
<p>< Back</p>
</div> -->
-<div class="article-title text-right">
+{% if in_article == true %}
+<h3 class="card-header-url"><a href="{{ SITEURL }}/{{ article.category|lower }}"> ⇠ Back</a></h3>
+{% endif %}
- {% 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
+<div class="article-meta">
+ <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> \ No newline at end of file