blob: 8edf8b4abdd13f093e968592f8686840e49d34d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<article class="blog-post">
{{/* TODO: partial "post-thumbnail.html" (dict "class" "list" "page" .) */}}
<header>
<h2 class="blog-post-title">
<a href="{{ .Permalink }}" rel="bookmark">{{ .Title }}</a>
</h2>
{{- partial "post-meta.html" . -}}
</header>
<p class="blog-post-content">
{{ .Summary }}
</p>
{{- if site.Params.readmore }}
{{- if .Truncated }}
<footer>
<a href="{{ .RelPermalink }}" class="read-more">{{ i18n "more" }}</a>
</footer>
{{- end }}
{{- end }}
</article>
|