This repository has been archived on 2025-03-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
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"}}