Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/vickylaixy/hugo-theme-introduction.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/blog/list.html')
-rw-r--r--layouts/blog/list.html35
1 files changed, 19 insertions, 16 deletions
diff --git a/layouts/blog/list.html b/layouts/blog/list.html
index 775277b..d3aea07 100644
--- a/layouts/blog/list.html
+++ b/layouts/blog/list.html
@@ -5,24 +5,27 @@
<div class="container">
{{ if .Site.Params.home.showLatest | default true }}
<h2 class="title is-2 top-pad">{{ i18n "index_blog_latestPosts" . }}</h2>
- {{ 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 }}
- </a>
- </h3>
- <div class="markdown">
- {{ .Summary }}
- {{ if .Truncated }}
- <a href="{{ .Permalink }}">{{ i18n "index_blog_readMore" . }}</a>
- {{ end }}
+ {{ 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>
</div>
- </div>
- {{ end }}
-
+ {{ end }}
{{ end }}
<h2 class="title is-2 top-pad">{{ i18n "index_blog_allPosts" . }}</h2>
- {{ partialCached "blog/li.html" . }}
+ {{if .Site.Params.home.allPostsArchiveFormat}}
+ {{ partialCached "blog/archive.html" .}}
+ {{else}}
+ {{ partialCached "blog/li.html" . }}
+ {{end}}
</div>
{{ end }}