summaryrefslogtreecommitdiff
path: root/layouts/section.html
diff options
context:
space:
mode:
author2026-02-10 17:11:24 +0300
committer2026-02-10 20:08:10 +0300
commit2ecb959c5b9c2b0750212af0349fd6d4a5c25258 (patch)
tree16b3268b7dd825a13d4d8c0eb00007cc7f9a8ac1 /layouts/section.html
downloadbase-master.tar.gz
base-master.tar.bz2
base-master.tar.xz
base-master.zip
Первый коммитHEADmaster
Diffstat (limited to 'layouts/section.html')
-rw-r--r--layouts/section.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/layouts/section.html b/layouts/section.html
new file mode 100644
index 0000000..5d3a4ba
--- /dev/null
+++ b/layouts/section.html
@@ -0,0 +1,26 @@
+{{ define "main" }}
+<article>
+ <h1>{{ .Title }}</h1>
+ {{ .Content }}
+</article>
+<div class="h-feed">
+
+ {{ range .Paginator.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 }}
+ <article>
+ {{ template "_internal/pagination.html" . }}
+ </article>
+</div>
+{{ end }} \ No newline at end of file