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

18 lines
353 B
HTML
Raw Normal View History

{{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>
2013-07-17 15:33:09 +02:00
<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>
2020-03-23 19:13:58 +00:00
{{template "footer.html" .S}}