Fix tags title
This commit is contained in:
parent
00f582146d
commit
bcdc90721f
2 changed files with 5 additions and 5 deletions
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
<section class="tag-list">
|
||||
{% for tag in terms %}
|
||||
<a href="{{ tag.path|safe }}">{{ tag.name }}</a> ({{ tag.pages | length }})<br/>
|
||||
<a href="{{ tag.path | safe }}">{{ tag.name | safe }}</a> ({{ tag.pages | length }})<br/>
|
||||
{% endfor %}
|
||||
</section>
|
||||
{% endblock main %}
|
||||
|
|
|
|||
|
|
@ -7,14 +7,14 @@
|
|||
{% endblock head %}
|
||||
|
||||
{% block main %}
|
||||
<h1>{{term.name | safe}}</h1>
|
||||
<h1>{{ term.name | safe }}</h1>
|
||||
|
||||
<section class="article-list">
|
||||
{% for page in term.pages %}
|
||||
<article>
|
||||
<h2 class="article-list_title"><a href="{{page.permalink|safe}}">{{page.title}}</a></h2>
|
||||
<small>{{page.date}}</small>
|
||||
<p>{{page.description|safe}}</p>
|
||||
<h2 class="article-list_title"><a href="{{ page.permalink | safe }}">{{ page.title | safe }}</a></h2>
|
||||
<small>{{ page.date }}</small>
|
||||
<p>{{ page.description | safe }}</p>
|
||||
</article>
|
||||
{% endfor %}
|
||||
</section>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue