This repository was archived by the owner on May 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathtags.html
More file actions
35 lines (30 loc) · 1.38 KB
/
tags.html
File metadata and controls
35 lines (30 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{% extends "base.html" %}
{% block title %}{{ NEST_TAGS_HEAD_TITLE }} - {{ super() }}{% endblock title %}
{% block description %}{{ NEST_TAGS_HEAD_DESCRIPTION }}{% endblock description %}
{% block header %}
<div class="container header-wrapper">
<div class="row">
<div class="col-lg-12">
<div class="header-content">
<h1 class="header-title text-uppercase">{{ NEST_TAGS_HEADER_TITLE }}</h1>
<div class="header-underline"></div>
<p class="header-subtitle header-subtitle-homepage">{{ NEST_TAGS_HEADER_SUBTITLE }}</p>
</div>
</div>
</div>
</div>
{% endblock header %}
{% block content %}
<div class="archive-container">
<div class="container content archive">
<h2><a href="{{ SITEURL }}/tags.html">{{ NEST_TAGS_CONTENT_TITLE }}</a></h2>
<dl class="dl-horizontal">
{% for tag, articles in tags|sort %}
{% set articles_count = articles | count %}
<dt><span class="label label-default">{{ articles | count }}</span> {% if articles_count == 1 %}article{% else %}articles{% endif %} {{ NEST_TAGS_CONTENT_LIST }}</dt>
<dd><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a></dd>
{% endfor %}
</dl>
</div>
</div>
{% endblock content %}