containerd/docs/layouts/shortcodes/news.html
Luc Perkins d1503dc9ce Migrate website to Hugo
Signed-off-by: Luc Perkins <lucperkins@gmail.com>
2018-05-15 12:30:26 -07:00

10 lines
180 B
HTML

{{- $news := .Site.Data.news }}
<ul>
{{- range $news }}
<li>
<a href="{{ .link }}">
{{ with .date }}{{ . }}: {{ end }}{{ .title }}
</a>
</li>
{{- end }}
</ul>