Files
chanbans/chanbans/templates/news.html
2023-08-13 19:28:06 -07:00

22 lines
442 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-08-13</td>
<td>Site is launched.</td>
</tr>
</table>
{% endblock main %}