From 7624fe7007c75a4074b7a257a44cb58f44e03752 Mon Sep 17 00:00:00 2001 From: Oscar Najera Date: Sun, 15 Oct 2023 22:18:48 +0200 Subject: Publication with resource button metadata --- layouts/_default/about.html | 10 ++++++++-- layouts/_default/single.html | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) (limited to 'layouts/_default') diff --git a/layouts/_default/about.html b/layouts/_default/about.html index 3fa1090..9c4ca2f 100644 --- a/layouts/_default/about.html +++ b/layouts/_default/about.html @@ -7,11 +7,17 @@
{{ range .Paginator.Pages }}
-
+

{{ .Title }}

- {{ .Content }} + {{ with .Content }} +
{{ . }}
+ {{ end }} + + {{ range where site.RegularPages "Type" "eq" .Params.subsection }} + {{ partial "post.html" . }} + {{ end }}
{{ end }} diff --git a/layouts/_default/single.html b/layouts/_default/single.html index 5405e4a..fe5115e 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -8,7 +8,7 @@

{{ . }}

{{ end }} - {{ if in (slice "post" "talk") .Section }} + {{ if in (slice "post" "talk" "publication") .Section }} {{ partial "metadata.html" . }} {{ end }} -- cgit v1.2.3