Files
chanbans/chanbans/templates/news.html
2023-09-09 23:33:40 -07:00

26 lines
576 B
HTML

{% extends "base.html" %}
{% block title %}News{% endblock title %}
{% block main %}
<h2>News</h2>
<table>
<thead>
<tr>
<th>Date</th>
<th>Item</th>
</tr>
</thead>
{# More news items go here... #}
{# 2023-08-13 #}
<tr>
<td>2023-09-09</td>
<td>Added stats page with histogram and board statistics.</td>
</tr>
<tr>
<td>2023-08-13</td>
<td>Site is launched.</td>
</tr>
</table>
{% endblock main %}