aboutsummaryrefslogtreecommitdiff
path: root/templates/index.twig
blob: 7f905ee4685a44020f6d3f0fe780e776d80ce656 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends "skeleton.twig" %}
{% import "macros.twig" as macros %}

{% block body %}
    {% if tagcloud %}
    <section class="tagcloud-outer">
        <h2>Tagcloud</h2>
        {{ macros.tagcloud(tagcloud) }}
    </section>
    {% endif %}

    {{ macros.new_note() }}
{% endblock %}