1
0
Fork 0
ejv2.cc/themes/dead-simple/layouts/partials/post_row.html

24 lines
697 B
HTML
Raw Normal View History

2024-08-01 06:21:40 +01:00
<li>
{{ if not .CurrentSection.Params.nodate }}
<div style="display: grid; grid-template-columns: 7em auto">
<span class="date">{{ .Date.Format "Jan 2, 2006" }}</span>
{{ if .Params.bold }}
<a class="bold-post-in-list" href="{{ .RelPermalink }}"
>{{ .Page.Title | markdownify }}</a
>
{{ else }}
<a href="{{ .RelPermalink }}">{{ .Page.Title | markdownify }}</a>
{{ end }}
</div>
{{ else }}
{{ if .Params.bold }}
<a class="bold-post-in-list" href="{{ .RelPermalink }}"
>{{ .Page.Title | markdownify }}</a
>
{{ else }}
<a href="{{ .RelPermalink }}">{{ .Page.Title | markdownify }}</a>
{{ end }}
{{ end }}
</li>