Bauke/tildes-issue-log
Bauke
/
tildes-issue-log
Archived
1
Fork 0
This repository has been archived on 2022-10-04. You can view files and clone it, but cannot push or open issues or pull requests.
tildes-issue-log/source/pages/templates/official-topics.html

27 lines
622 B
HTML

{% if officialTopics.length > 0 %}
<h3 id="official-topics">Official Topics</h3>
<table>
<thead>
<tr>
<th>Date</th>
<th>Topic</th>
</tr>
</thead>
<tbody>
{% for topic in officialTopics %}
<tr>
<td>
<time datetime="{{ topic.date.toISOString() }}" title="{{ topic.date.toUTCString() }}">
{{ fecha.format(topic.date, 'YYYY-MM-DD') }}
</time>
</td>
<td>
<a href="{{ topic.url }}">{{ topic.title }}</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endif %}