hugo-theme-introduction/layouts/partials/home/blog.html

38 lines
1.5 KiB
HTML
Raw Normal View History

{{ with .Site.GetPage "/blog" }}
2018-06-27 09:30:11 +00:00
<div class="section" id="{{ .Title | urlize }}">
2018-06-25 13:03:18 +00:00
<!-- Begin Blog container -->
<div class="container">
2018-07-20 12:45:36 +00:00
{{ if .Site.Params.home.showLatest | default true }}
2018-06-27 00:10:46 +00:00
<h2 class="title is-2 has-text-centered">{{ i18n "index_blog_latestPosts" . }}</h2>
2018-06-27 00:33:38 +00:00
{{ range first 1 .Pages.ByPublishDate.Reverse }}
<div class="summary">{{ if .Params.date }}{{ .Date.Format (.Site.Params.dateFormat | default "Jan 02, 2006") }}{{ end }}
2020-05-31 18:12:41 +00:00
<h3 class="title is-3 latest-post-title"><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></h3>
2018-06-25 13:03:18 +00:00
<div class="markdown">
{{ .Summary }}
{{ if .Truncated }}
2018-07-20 15:27:32 +00:00
<a href="{{ .Permalink }}">{{ i18n "index_blog_readMore" . }}</a>
2018-06-25 13:03:18 +00:00
{{ end }}
</div>
</div>
{{ end }}
{{ end }}
2018-07-20 12:45:36 +00:00
{{ if .Site.Params.home.showAllPosts }}
</div>
</div>
<div class="section" id="all-posts">
<div class="container">
2018-06-27 00:10:46 +00:00
<h2 class="title is-2 has-text-centered top-pad">{{ i18n "index_blog_allPosts" . }}</h2>
2018-07-03 11:21:06 +00:00
{{ partialCached "blog/li.html" . }}
2018-06-25 13:03:18 +00:00
{{ else }}
2018-06-27 00:10:46 +00:00
<div class="container has-text-centered top-pad">
2018-07-20 15:27:32 +00:00
<a href="{{ .Permalink }}">{{ i18n "index_blog_allPosts" . }}</a>
2018-06-27 00:10:46 +00:00
</div>
2018-06-25 13:03:18 +00:00
{{ end }}
</div>
2018-06-25 13:03:18 +00:00
<!-- End Blog container -->
{{ partial "top-icon.html" . }}
</div>
<!-- End Blog section -->
<div class="container"><hr></div>
2017-03-13 09:14:02 +00:00
{{ end }}