aboutsummaryrefslogtreecommitdiff
path: root/templates/index.twig
diff options
context:
space:
mode:
Diffstat (limited to 'templates/index.twig')
-rw-r--r--templates/index.twig13
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/index.twig b/templates/index.twig
new file mode 100644
index 0000000..7f905ee
--- /dev/null
+++ b/templates/index.twig
@@ -0,0 +1,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 %}