aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/default/tags.twig
blob: 9421fe3eab40699f039e443d2bc52c6f9048a1aa (plain) (blame)
1
2
3
4
5
6
7
8
{% extends "layout.twig" %}
{% block title %}tags{% endblock %}
{% block menu %}
{% include '_menu.twig' %}
{% endblock %}
{% block content %}
{% for tag in tags %}<a href="#">{{ tag.value }}</a> {% endfor %}
{% endblock %}