##// END OF EJS Templates
Decreased popup image border size. Speed up fade effect of the popup.
Decreased popup image border size. Speed up fade effect of the popup.

File last commit:

r57:dcbc67f3 default
r64:35dab848 default
Show More
tags.html
23 lines | 429 B | text/html | HtmlLexer
neko259
Limit number of tags shown in the navigation bar to only the most popular ones.
r57 {% extends "base.html" %}
{% load i18n %}
{% load markup %}
{% block head %}
<title>Neboard - {% trans "tags" %}</title>
{% endblock %}
{% block content %}
<div class="post">
{% if tags %}
{% for tag in all_tags %}
<a class="tag" href="{% url 'tag' tag.name %}">
{{ tag.name }}</a><br />
{% endfor %}
{% else %}
No tags found.
<hr />
{% endif %}
</div>
{% endblock %}