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

github.com/mrmierzejewski/hugo-theme-console.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/_default/list.html')
-rw-r--r--layouts/_default/list.html8
1 files changed, 5 insertions, 3 deletions
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
index c01818a..17fc6b8 100644
--- a/layouts/_default/list.html
+++ b/layouts/_default/list.html
@@ -7,9 +7,11 @@
{{ range sort .Data.Pages "Date" "desc" }}
{{ if not .Params.private }}
<div class="post">
- <div class="date">{{ .PublishDate.Format "Jan. 2, 2006" }}</div>
- <h1><a href="{{ .Permalink }}" title="{{ .Title }}">{{ .Title }}</a></h1>
- {{ .Summary }}
+ <p>
+ <div class="date">{{ .PublishDate.Format "Jan. 2, 2006" }}</div>
+ <h1><a href="{{ .Permalink }}" title="{{ .Title }}">{{ .Title }}</a></h1>
+ {{ .Summary }}
+ </p>
</div>
{{ end }}
{{ end }}