This repository has been archived on 2025-03-01. You can view files and clone it, but cannot push or open issues or pull requests.
trantor/templates/news.html
Las Zenow 6a3da59c75 Port the web to bootstrap5
So it is responsive in phones.
2021-05-01 11:08:35 +00:00

17 lines
353 B
HTML

{{template "header.html" .S}}
<div class="row">
<h4 class="col">News:</h4>
<a href="/news/?fmt=rss" class="col text-end"><img src="/img/feed.png"/></a>
</div>
<dl>
{{range .News}}
<div class="row">
<dt class="col-sm-2 text-sm-end">{{.Date}}</dt>
<dd class="col-sm-10">{{.Text}}</dd>
</div>
{{end}}
</dl>
{{template "footer.html" .S}}