16 | {% for item in feeditems %}
17 | {% if item.time.year < date.year or item.time.month < date.month or item.time.day < date.day %}
18 | {% set date = item.time %}
19 |
{{ date | datetime }}
20 | {% endif %}
21 |
22 |
34 | {% if item.content %}
35 |
36 | {% include 'cards/' + item.type + '.html' ignore missing %}
37 |
38 | {% endif %}
39 |
40 | {% endfor %}
41 |
42 | {% include 'footer.html' %}
43 |
44 |
45 |
--------------------------------------------------------------------------------
/templates/footer.html:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/templates/header.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------