You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
330 B
11 lines
330 B
3 years ago
|
{{ range . }}
|
||
|
<li>
|
||
|
<span class="list__title--small">
|
||
|
<a href="{{ .RelPermalink }}" {{if .Draft}}class="draft"{{end}}>{{ .Title }}</a>
|
||
|
{{if not .Date.IsZero}}
|
||
|
<time class="pull-right hidden-tablet">{{ .Date.Format (.Site.Params.dateformat | default "Jan 02 '06") }}</time>
|
||
|
{{end}}
|
||
|
</span>
|
||
|
</li>
|
||
|
{{ end }}
|