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:
authorHanzei <hanzei@mailbox.org>2018-06-27 01:30:17 +0300
committerHanzei <hanzei@mailbox.org>2018-06-27 01:30:17 +0300
commitc555b2b52c149aa8bd083b670583e4b3bb963f10 (patch)
treedba3e4030fb4becf4f108db4bdab8c338fe77702 /layouts/blog/list.html
parent8269d33fa2f256b6378bcf3473006fcf9ccf051e (diff)
parent997c707d5b0180a125fe97c106e6997c73dcd5bb (diff)
Merge branch 'master' into fix_nav_2
Diffstat (limited to 'layouts/blog/list.html')
-rw-r--r--layouts/blog/list.html10
1 files changed, 7 insertions, 3 deletions
diff --git a/layouts/blog/list.html b/layouts/blog/list.html
index 63219c2..faade24 100644
--- a/layouts/blog/list.html
+++ b/layouts/blog/list.html
@@ -20,13 +20,17 @@
<h2 class="title is-2 top-pad">Latest Post</h2>
{{ range first 1 (where .Data.Pages.ByPublishDate.Reverse "Section" "blog") }}
<div class="summary">{{ .Date.Format (.Site.Params.dateForm | default "Jan 02, 2006") }}
- <h3 class="title is-3 strong-post-title"><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
- <div class="markdown">
+ <h3 class="title is-3 strong-post-title">
+ <a href="{{ .RelPermalink }}">
+ {{ .Title }}
+ </a>
+ </h3>
+ <div class="markdown">
{{ .Summary }}
{{ if .Truncated }}
<a href="{{ .RelPermalink }}">...Read More</a>
{{ end }}
- </div>
+ </div>
</div>
{{ end }}
{{ end }}