##// END OF EJS Templates
Added js popup for image viewing.
Added js popup for image viewing.

File last commit:

r57:dcbc67f3 default
r63:accf806c default
Show More
tags.html
23 lines | 429 B | text/html | HtmlLexer
{% 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 %}