aboutsummaryrefslogtreecommitdiffstats
path: root/src/templates/index.html.j2
diff options
context:
space:
mode:
Diffstat (limited to 'src/templates/index.html.j2')
-rw-r--r--src/templates/index.html.j216
1 files changed, 16 insertions, 0 deletions
diff --git a/src/templates/index.html.j2 b/src/templates/index.html.j2
new file mode 100644
index 0000000..68f9837
--- /dev/null
+++ b/src/templates/index.html.j2
@@ -0,0 +1,16 @@
+{% extends "template.html.j2" %}
+{% block content %}
+ <div id="multicharts">
+ <ul>
+ {% for elem in charts %}
+ <li>
+ <figure class="chart_container">
+ <div class="minichart" id="/minichart{{ elem['url'] }}">
+ </div>
+ </figure>
+ <a class="bottom_text" href="{{ elem['url'] }}">{{ elem['title'] }}</a>
+ </li>
+ {% endfor %}
+ </ul>
+ </div>
+{% endblock %} \ No newline at end of file