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
2013-07-17 15:33:09 +02:00

14 lines
215 B
HTML

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