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
2020-03-23 19:13:58 +00:00

16 lines
295 B
HTML

{{template "header.html" .S}}
<h4>News:
<a href="/news/?fmt=rss" class="pull-right"><img src="/img/feed.png"/></a>
</h4>
<dl class="dl-horizontal">
{{range .News}}
<div class="well well-small">
<dt>{{.Date}}</dt>
<dd>{{.Text}}</dd>
</div>
{{end}}
</dl>
{{template "footer.html" .S}}