hugo-theme-introduction/layouts/blog/list.html

32 lines
1.2 KiB
HTML
Raw Normal View History

2018-07-01 08:09:29 +00:00
{{ define "main" }}
<div class="container markdown top-pad">
{{ .Content }}
2018-06-25 13:03:18 +00:00
</div>
2018-07-01 08:09:29 +00:00
<div class="container">
2018-07-20 12:45:36 +00:00
{{ if .Site.Params.home.showLatest | default true }}
2018-07-01 08:09:29 +00:00
<h2 class="title is-2 top-pad">{{ i18n "index_blog_latestPosts" . }}</h2>
2020-12-24 08:31:47 +00:00
{{ range first 1 .Pages.ByPublishDate.Reverse }}
<div class="summary">{{ if .Params.date }}{{ .Date.Format (.Site.Params.dateFormat | default "Jan 02, 2006") }}{{ end }}
<h3 class="title is-3 strong-post-title">
<a href="{{ .Permalink }}">
{{ .Title | markdownify }}
</a>
</h3>
<div class="markdown">
{{ .Summary }}
{{ if .Truncated }}
<a href="{{ .Permalink }}">{{ i18n "index_blog_readMore" . }}</a>
{{ end }}
</div>
2018-06-27 00:10:46 +00:00
</div>
2020-12-24 08:31:47 +00:00
{{ end }}
2018-07-01 08:09:29 +00:00
{{ end }}
<h2 class="title is-2 top-pad">{{ i18n "index_blog_allPosts" . }}</h2>
2020-12-24 08:31:47 +00:00
{{if .Site.Params.home.allPostsArchiveFormat}}
{{ partialCached "blog/archive.html" .}}
{{else}}
{{ partialCached "blog/li.html" . }}
{{end}}
2018-06-25 13:03:18 +00:00
</div>
2018-07-01 08:09:29 +00:00
{{ end }}