aboutsummaryrefslogtreecommitdiff
path: root/crumbs/templates/article_header.html
blob: 4f265b7ab28459c8f14fd645924a63a6712d2e41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!-- <div class="article-title">
    <p>< Back</p>
</div> -->

{% if in_article == true %}
<h3 class="card-header-url"><a href="{{ SITEURL }}/{{ article.category|lower }}"> ⇠ Back</a></h3>
{% endif %}

<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>