diff --git a/content/about.md b/content/about.md index ff1a7eb..bdda356 100644 --- a/content/about.md +++ b/content/about.md @@ -1,3 +1,8 @@ +--- +title: "About" +include_partials: ["facilitator-list.html"] +--- + The Protocol Oral History Project is an effort to honor and share the stories of protocol artists—the skilled builders and stewards of the rules, standards, and norms that shape our lives in often invisible ways, ranging from technical standards and diplomatic practices to Indigenous traditions and radical subcultures. The color scheme is inspired by _[Constitutional Wampum](http://n2t.net/ark:/65665/ws63912f5dd-e703-4759-8c31-33ac98b3c190)_ by Robert Houle. diff --git a/layouts/_default/single.html b/layouts/_default/single.html index 8af0a99..2b0dc73 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -1,12 +1,17 @@ {{ define "main" }} -
-
{{ partial "article-wompum.html" . }}

{{ .Title }}

{{ .Content }} + + {{/* Check for additional partials to include */}} + {{ with .Params.include_partials }} + {{ range . }} + {{ partial . $ }} + {{ end }} + {{ end }}
{{ end }} \ No newline at end of file diff --git a/layouts/partials/facilitator-list.html b/layouts/partials/facilitator-list.html new file mode 100644 index 0000000..7b188fc --- /dev/null +++ b/layouts/partials/facilitator-list.html @@ -0,0 +1,20 @@ +
+

Facilitators

+
+ {{ $facilitators := slice }} + {{ range .Site.RegularPages }} + {{ with .Params.facilitator }} + {{ $facilitators = $facilitators | append . }} + {{ end }} + {{ end }} + {{ $facilitators = $facilitators | uniq | sort }} + {{ range $facilitator := $facilitators }} + + {{ $facilitator }} + + {{ end }} +
+
+ \ No newline at end of file