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

15 lines
215 B
HTML
Raw Normal View History

{{template "header.html" .S}}
2013-07-17 15:33:09 +02:00
<h4>News:</h4>
<dl class="dl-horizontal">
{{range .News}}
2013-07-17 15:33:09 +02:00
<div class="well well-small">
<dt>{{.Date}}</dt>
<dd>{{.Text}}</dd>
2013-07-17 15:33:09 +02:00
</div>
{{end}}
</dl>
{{template "footer.html"}}