Added first functions in backend The homepage can now show the most recent archives
20 lines
No EOL
468 B
HTML
20 lines
No EOL
468 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block meta %}
|
|
<link rel="stylesheet" href="/static/home.css" />
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% if archives|length > 0 %}
|
|
<div class="grid-container">
|
|
{% for arch in archives %}
|
|
<div class="grid-item clickable"><b>{{arch[0]}}</b></div>
|
|
<div class="grid-item"><p>{{arch[1]|spacer}}</p></div>
|
|
<div class="grid-item"><p>{{arch[2]|ctime}}</p></div>
|
|
|
|
{% endfor %}
|
|
</div>
|
|
{% else %}
|
|
<p>No matching archives</p>
|
|
{% endif %}
|
|
{% endblock %} |