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 5f612a36ad Simple news implementation
Is missing some proper design and to show up the news on the front page.
2013-07-17 01:08:44 +02:00

10 lines
162 B
HTML

{{template "header.html" .S}}
<dl class="dl-horizontal">
{{range .News}}
<dt>{{.Date}}</dt>
<dd>{{.Text}}</dd>
{{end}}
</dl>
{{template "footer.html"}}