summaryrefslogtreecommitdiff
path: root/themes/neonxp/layouts/pages/section.html
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--themes/neonxp/layouts/pages/section.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/themes/neonxp/layouts/pages/section.html b/themes/neonxp/layouts/pages/section.html
new file mode 100644
index 0000000..cc60509
--- /dev/null
+++ b/themes/neonxp/layouts/pages/section.html
@@ -0,0 +1,23 @@
+{{ define "main" }}
+<article>
+ <h1>{{ .Title }}</h1>
+ {{ .Content }}
+</article>
+<div class="h-feed">
+
+ {{ range .Pages }}
+ <article class="h-entry">
+ <h2 class="p-name"><a class="u-url" href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
+ {{if .Date }}
+ {{ $dateMachine := .Date | time.Format "2006-01-02 15:04:05-07:00" }}
+ {{ $dateHuman := .Date | time.Format ":date_long" }}
+ <time class="dt-published" datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>
+ {{end}}
+ <div class="p-summary">
+ {{ .Summary }}
+ </div>
+ <a class="btn-primary" href="{{ .RelPermalink }}">Читать дальше...</a>
+ </article>
+ {{ end }}
+</div>
+{{ end }} \ No newline at end of file