mirror of
https://github.com/tomfran/typo.git
synced 2025-04-26 05:29:54 +03:00
21 lines
No EOL
490 B
HTML
21 lines
No EOL
490 B
HTML
<div class="post-line">
|
|
|
|
{{ $dateFormat := "2 Jan 2006"}}
|
|
{{ with .Site.Params.listDateFormat }}
|
|
{{ $dateFormat = .}}
|
|
{{ end }}
|
|
|
|
<p class="line-date">{{ .Date | time.Format $dateFormat }} </p>
|
|
|
|
<div>
|
|
<p class="line-title">
|
|
<a href="{{ .RelPermalink }}">
|
|
{{ .Title }}
|
|
</a>
|
|
</p>
|
|
|
|
{{ if .Site.Params.listSummaries }}
|
|
<p class="line-summary"> {{ .Summary }} </p>
|
|
{{ end }}
|
|
</div>
|
|
</div> |