diff --git a/layouts/founders-vision/section.html b/layouts/founders-vision/section.html new file mode 100644 index 0000000..b00136d --- /dev/null +++ b/layouts/founders-vision/section.html @@ -0,0 +1,95 @@ +{{ define "main" }} + {{ if .Params.Image }} +
+ {{ partial "image" (dict "Src" .Params.Image "Alt" "Banner" "Class" "w-1/4 h-1/4 mx-auto" ) }} +
+ {{ end }} +
+
+

{{ .Params.Title }}

+
+
+
+
+
+
+ {{ $sections := slice . }} + {{ if .Sections }} + {{ $sections = .Sections.ByDate.Reverse }} + {{ end }} + {{ range $sections }} +
+
+

{{ .Title }}

+
+
+ {{ .Content }} +
+
+ {{ range .RegularPages.ByDate }} +
+ {{ $image := .Params.thumbnail }} + {{ if $image }} + + {{ partial "image" (dict "Src" $image "Context" .Page "Alt" .Title "Class" "mb-3 w-full rounded") }} + + {{ end }} +
+ +

+ {{ .Title }} +

+
+
+ {{ with .Params.mediatype }} +
+ {{ if eq . "intro" }} + + Intro + {{ end }} + + {{ if eq . "philo" }} + + Policy + {{ end }} + + {{ if eq . "struct" }} + + Logistics + {{ end }} + + {{ if eq . "rev" }} + + Business + {{ end }} + + {{ if eq . "key" }} + + Directive + {{ end }} + + {{ if eq . "extra" }} + + Bonus Section + {{ end }} +
+ {{ end }} +
+
+

{{ .Params.description | markdownify }}

+
+ {{ end }} +
+ {{ range .Params.Notes }} + {{ partial "components/bignote.html" . }} + {{ end }} +
+ {{ end }} +
+
+

Changelog

+

- v0.5.0, Copyright © April 2, 2025

+
+
+
+{{ end }} diff --git a/layouts/founders-vision/single.html b/layouts/founders-vision/single.html new file mode 100644 index 0000000..45b998d --- /dev/null +++ b/layouts/founders-vision/single.html @@ -0,0 +1,12 @@ +{{ define "main" }} + {{ partial "page-header" . }} +
+
+
+
+ {{ .Content }} +
+
+
+
+{{ end }}