nooz/templates/date.html

20 lines
952 B
HTML

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