nooz/templates/date.html

19 lines
875 B
HTML

{% extends "layout.html" %}
{% block body %}
<div class="container ">
<h1>{{date}}</h1>
{%- for key, subject in separated_notes.items() recursive %}
<h2>{{ key }}</h2>
{%- if subject %}
{% for note in subject %}
<a href="/view/{{note.subject}}/{{note.datestring }}" ><img src="{{ url_for('static', filename='mini/' + note.subject + '/' + note.datestring + '/' + note.name) }}" class="img img-rounded" alt=""></a>
{% endfor %}
{%- endif %}
{%- endfor %}
</div>
{% endblock %}