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

github.com/wlh320/hugo-theme-hulga.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/posts.html')
-rw-r--r--layouts/partials/posts.html24
1 files changed, 17 insertions, 7 deletions
diff --git a/layouts/partials/posts.html b/layouts/partials/posts.html
index f8d1810..dfbdeb3 100644
--- a/layouts/partials/posts.html
+++ b/layouts/partials/posts.html
@@ -12,17 +12,27 @@
<div class="post-box-title">
<a href="{{ .Permalink }}" class="title is-size-5">{{ .Title }}</a>
</div>
+ {{ if .Site.Params.showSummary }}
+ <div class="post-box-summary">
+ {{ .Summary }}
+ {{ if .Truncated }}
+ <span>
+ <a href="{{ .RelPermalink }}">…Read More</a>
+ </span>
+ {{ end }}
+ </div>
+ {{ end }}
<div class="post-box-meta">
{{ .Date.Format "2006/01/02" }}
{{ with .Params.Categories }} ・
- {{ range .}}
- <span class="post-tag post-box-category">
- <a href="{{ "/categories/" | relLangURL }}{{ . | urlize }}/">{{ . }}</a>
- </span>
- {{ end }}
+ {{ range .}}
+ <span class="post-tag post-box-category">
+ <a href="{{ "/categories/" | relLangURL }}{{ . | urlize }}/">{{ . }}</a>
+ </span>
+ {{ end }}
{{ end }}
</div>
- {{ with .Params.Tags }}
+ {{ with .Params.Tags }}
<div class="post-box-tags">
{{ range .}}
<span class="post-tag post-box-tag">
@@ -90,4 +100,4 @@
</div>
</div>
</div>
-</section>
+</section> \ No newline at end of file