diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/assets/css/site.css b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/assets/css/site.css
index 218b23d..cfc4cd0 100644
--- a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/assets/css/site.css
+++ b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/assets/css/site.css
@@ -307,6 +307,10 @@ body {
color: black;
}
+#preview {
+ display: none;
+}
+
sup,
sub {
vertical-align: baseline;
diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/assets/js/sandpoints.js b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/assets/js/sandpoints.js
index 8021e55..1ffb04c 100644
--- a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/assets/js/sandpoints.js
+++ b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/assets/js/sandpoints.js
@@ -1,83 +1,115 @@
-window.addEventListener('scroll', function(e) {
- if (document.querySelector('body').clientWidth > 767) {
- let rightcolumn = document.querySelector('.rightcolumn');
- let mantletitle = document.querySelector('.mantletitle') || document.querySelector('.crusttitle') || false;
- if (!mantletitle) {
- return
- }
- let mantlebar = document.querySelector('.mantlebar')
- let grid = document.querySelector('.grid')
- let gridrect = mantletitle.getBoundingClientRect();
-
- if ((document.querySelector('body').clientHeight - (grid.clientHeight + mantletitle.clientHeight + 32)) < window.innerHeight) {
- return
- }
-
- if (gridrect.top < 20 && !grid.classList.contains('moved')) {
- grid.classList.add('moved');
- mantlebar.style.display = "inline";
- mantletitle.style.visibility = "hidden";
- } else if (gridrect.top > 21 && grid.classList.contains('moved')) {
- grid.classList.remove('moved');
- mantletitle.style.visibility = "visible";
- mantlebar.style.display = "none";
- }
- } else {
- let rightcolumn = document.querySelector('.rightcolumn');
- let mantletitle = document.querySelector('.mantletitle') || document.querySelector('.crusttitle') || false;
- if (!mantletitle) {
- return
- }
- let mantlebar = document.querySelector('.mantlebar')
- let grid = document.querySelector('.grid')
- let gridrect = mantletitle.getBoundingClientRect();
-
- if (gridrect.top < 20 && !grid.classList.contains('moved')) {
- grid.classList.add('moved');
- mantlebar.style.display = "inline";
- mantletitle.style.visibility = "hidden";
- } else if (gridrect.top > 21 && grid.classList.contains('moved')) {
- grid.classList.remove('moved');
- mantletitle.style.visibility = "visible";
- mantlebar.style.display = "none";
- }
+window.addEventListener("scroll", function (e) {
+ if (document.querySelector("body").clientWidth > 767) {
+ let rightcolumn = document.querySelector(".rightcolumn");
+ let mantletitle =
+ document.querySelector(".mantletitle") ||
+ document.querySelector(".crusttitle") ||
+ false;
+ if (!mantletitle) {
+ return;
}
-})
-
-window.addEventListener('DOMContentLoaded', (e) => {
- let par = document.querySelector("#TableOfContents > ol:first-child > li:first-child");
- let s = document.createElement("span");
- s.appendChild(par.cloneNode(true))
- par.remove()
- document.querySelector("#TableOfContents > ol:first-child").insertBefore(s, document.querySelector("#TableOfContents > ol:first-child").firstChild)
-
- if (document.querySelector(".soundcite")) {
- let relPath ="../".repeat(relPathDepth - 1);
-
- var popcorn = document.createElement('script');
- popcorn.src = `${relPath}js/popcorn.min.js`;
- document.body.appendChild(popcorn);
-
- var soundcite = document.createElement('script');
- soundcite.src = `${relPath}js/soundcite.min.js`;
- document.body.appendChild(soundcite);
+ let mantlebar = document.querySelector(".mantlebar");
+ let grid = document.querySelector(".grid");
+ let gridrect = mantletitle.getBoundingClientRect();
+ if (
+ document.querySelector("body").clientHeight -
+ (grid.clientHeight + mantletitle.clientHeight + 32) <
+ window.innerHeight
+ ) {
+ return;
}
- document.querySelectorAll('#TableOfContents a, .anchorz, .footnote-backref, .footnote-ref').forEach(i => {
- i.addEventListener('click', e => {
- setTimeout(() => {
- window.scrollBy({top: document.querySelector('.header').clientHeight * -1.25, behavior: 'smooth'})}, 50);
- })
- })
-})
+ if (gridrect.top < 20 && !grid.classList.contains("moved")) {
+ grid.classList.add("moved");
+ mantlebar.style.display = "inline";
+ mantletitle.style.visibility = "hidden";
+ } else if (gridrect.top > 21 && grid.classList.contains("moved")) {
+ grid.classList.remove("moved");
+ mantletitle.style.visibility = "visible";
+ mantlebar.style.display = "none";
+ }
+ } else {
+ let rightcolumn = document.querySelector(".rightcolumn");
+ let mantletitle =
+ document.querySelector(".mantletitle") ||
+ document.querySelector(".crusttitle") ||
+ false;
+ if (!mantletitle) {
+ return;
+ }
+ let mantlebar = document.querySelector(".mantlebar");
+ let grid = document.querySelector(".grid");
+ let gridrect = mantletitle.getBoundingClientRect();
+
+ if (gridrect.top < 20 && !grid.classList.contains("moved")) {
+ grid.classList.add("moved");
+ mantlebar.style.display = "inline";
+ mantletitle.style.visibility = "hidden";
+ } else if (gridrect.top > 21 && grid.classList.contains("moved")) {
+ grid.classList.remove("moved");
+ mantletitle.style.visibility = "visible";
+ mantlebar.style.display = "none";
+ }
+ }
+});
+
+window.addEventListener("DOMContentLoaded", (e) => {
+ let preview = document.querySelector("#preview");
+ if (
+ location.pathname.split("/").includes("_preview") ||
+ location.hash.startsWith("#/_edit")
+ ) {
+ preview.style.display = "flex";
+ }
+
+ let par = document.querySelector(
+ "#TableOfContents > ol:first-child > li:first-child"
+ );
+ let s = document.createElement("span");
+ s.appendChild(par.cloneNode(true));
+ par.remove();
+ document
+ .querySelector("#TableOfContents > ol:first-child")
+ .insertBefore(
+ s,
+ document.querySelector("#TableOfContents > ol:first-child").firstChild
+ );
+
+ if (document.querySelector(".soundcite")) {
+ let relPath = "../".repeat(relPathDepth - 1);
+
+ var popcorn = document.createElement("script");
+ popcorn.src = `${relPath}js/popcorn.min.js`;
+ document.body.appendChild(popcorn);
+
+ var soundcite = document.createElement("script");
+ soundcite.src = `${relPath}js/soundcite.min.js`;
+ document.body.appendChild(soundcite);
+ }
+
+ document
+ .querySelectorAll(
+ "#TableOfContents a, .anchorz, .footnote-backref, .footnote-ref"
+ )
+ .forEach((i) => {
+ i.addEventListener("click", (e) => {
+ setTimeout(() => {
+ window.scrollBy({
+ top: document.querySelector(".header").clientHeight * -1.25,
+ behavior: "smooth",
+ });
+ }, 50);
+ });
+ });
+});
toggleAllLinks = function () {
- document.querySelectorAll('details').forEach(i => {
- if (i.open) {
- i.removeAttribute('open');
- } else {
- i.setAttribute('open', true);
- }
- })
-}
+ document.querySelectorAll("details").forEach((i) => {
+ if (i.open) {
+ i.removeAttribute("open");
+ } else {
+ i.setAttribute("open", true);
+ }
+ });
+};
diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/layouts/_default/_markup/render-image.html b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/layouts/_default/_markup/render-image.html
index bfd4827..509776f 100644
--- a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/layouts/_default/_markup/render-image.html
+++ b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/layouts/_default/_markup/render-image.html
@@ -6,43 +6,43 @@
{{- end -}}
{{- if strings.HasPrefix .Destination "bib:" -}}
- {{- $destination := (substr .Destination 4) -}}
- {{- $c_prefix := .Page.Site.Params.sandpointsCatalogPrefix | default "/library/" -}}
- {{- if index $.Page.Site.Data.books.catalog $destination -}}
- {{- $b := index $.Page.Site.Data.books.catalog $destination -}}
- {{- $bibhref := printf "%sBROWSE_LIBRARY.html#/book/%s" (safeURL ($c_prefix)) $destination }}
- {{ $bibtitle := "" }}
- {{ with $b.title }}
- {{- $bibtitle = printf "%s" $b.title }}
- {{ end }}
- {{ .Page.Scratch.Add "bibs" (slice (slice $bibhref $bibtitle)) }}
- {{- if not $text_link -}}
- {{- delimit $b.authors ", " " & " -}}{{- with $b.pubdate -}}, {{- substr . 0 4}}{{- end -}}.bib⁄‘{{- $b.title -}}’. {{- with $b.publisher -}}{{- . -}}.{{- end -}}
- {{- else -}}
- {{- $text_link -}}
- {{- end -}}
+ {{- $destination := (substr .Destination 4) -}}
+ {{- $c_prefix := .Page.Site.Params.sandpointsCatalogPrefix | default "/library/" -}}
+ {{- if index $.Page.Site.Data.books.catalog $destination -}}
+ {{- $b := index $.Page.Site.Data.books.catalog $destination -}}
+ {{- $bibhref := printf "%sBROWSE_LIBRARY.html#/book/%s" (safeURL ($c_prefix)) $destination }}
+ {{ $bibtitle := "" }}
+ {{ with $b.title }}
+ {{- $bibtitle = printf "%s" $b.title }}
+ {{ end }}
+ {{ .Page.Scratch.Add "bibs" (slice (slice $bibhref $bibtitle)) }}
+ {{- if not $text_link -}}
+ {{- delimit $b.authors ", " " & " -}}{{- with $b.pubdate -}}, {{- substr . 0 4}}{{- end -}}.bib⁄‘{{- $b.title -}}’. {{- with $b.publisher -}}{{- . -}}.{{- end -}}
{{- else -}}
- {{- $text_link -}}⦚bib:{{- $destination -}} not found
+ {{- $text_link -}}
{{- end -}}
+ {{- else -}}
+ {{- $text_link -}}⦚bib:{{- $destination -}} not found
+ {{- end -}}
{{- else if in ($_.Get "triads") (index (split .Destination ":") 0) -}}
- {{- if $.Page.Site.GetPage (printf "/%s" (replace .Destination ":" "/")) -}}
- {{- $session := $.Page.Site.GetPage (printf "/%s" (replace .Destination ":" "/")) -}}
- {{ .Page.Scratch.Add "links" (slice $session) }}
- {{- if not $text_link -}}
- {{- index (split .Destination ":") 0 -}}⁄{{- $session.Title -}}
- {{- else -}}
- {{- index (split .Destination ":") 0 -}}⁄{{- $text_link -}}
- {{- end -}}
+ {{- if $.Page.Site.GetPage (printf "/%s" (replace .Destination ":" "/")) -}}
+ {{- $session := $.Page.Site.GetPage (printf "/%s" (replace .Destination ":" "/")) -}}
+ {{ .Page.Scratch.Add "links" (slice $session) }}
+ {{- if not $text_link -}}
+ {{- index (split .Destination ":") 0 -}}⁄{{- $session.Title -}}
{{- else -}}
- {{- $text_link -}}⦚{{- .Destination -}} not found
+ {{- index (split .Destination ":") 0 -}}⁄{{- $text_link -}}
{{- end -}}
+ {{- else -}}
+ {{- $text_link -}}⦚{{- .Destination -}} not found
+ {{- end -}}
{{- else if strings.HasPrefix .Destination "audio:" -}}
- {{- $a_destination := (substr .Destination 6) -}}
- {{- if findRE "^.*static" $a_destination -}}
- {{ .Text }}
- {{- else -}}
- {{ .Text }}
- {{- end -}}
+ {{- $a_destination := (substr .Destination 6) -}}
+ {{- if findRE "^.*static" $a_destination -}}
+ {{ .Text }}
+ {{- else -}}
+ {{ .Text }}
+ {{- end -}}
{{- else if findRE "^.*static" .Destination -}}
{{- else -}}
diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/layouts/_default/baseof.html b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/layouts/_default/baseof.html
index d5a041f..4c09044 100644
--- a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/layouts/_default/baseof.html
+++ b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/layouts/_default/baseof.html
@@ -1,13 +1,13 @@
-
- {{- partialCached "head.html" . -}}
- {{ $p.Content }}
+ {{ range $printPage := $scratch.has_cildren }}
+
{{ partial "singlebody.html" $printPage }}
+
{{ $printPage.Content }}
+ {{ $printPageScratch := $s.Get (printf "/%s" $printPage.File) }}
+ {{ range $printPageKid := $printPageScratch.has_children }}
+
{{ partial "singlebody.html" $printPageKid }}
+
{{ $printPageKid.Content }}
+ {{ . }}
+ {{ end }}
+
+ {{ end }}
+{{- end -}}
diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/layouts/shortcodes/gloss.html b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/layouts/shortcodes/gloss.html
index 0d23469..b90c4c3 100644
--- a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/layouts/shortcodes/gloss.html
+++ b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/layouts/shortcodes/gloss.html
@@ -1,25 +1,25 @@
{{ $inn := .Inner | $.Page.RenderString }}
-
- {{- range $g := (split $inn "\n") -}}
- {{- if hasPrefix $g "{r}" -}}
-
- {{- substr $g 3 | htmlUnescape | safeHTML -}}
-
- {{- else if hasPrefix $g "{g}" -}}
-
- {{- range (split (substr $g 3) "|") -}}
- {{- with . -}}
-
- {{- range (split . "," ) -}}
-
{{- . | htmlUnescape | safeHTML -}}
- {{- end -}}
-
- {{- end -}}
- {{- end -}}
-
+
+ {{- range $g := (split $inn "\n") -}}
+ {{- if hasPrefix $g "{r}" -}}
+
+ {{- substr $g 3 | htmlUnescape | safeHTML -}}
+
+ {{- else if hasPrefix $g "{g}" -}}
+
+ {{- range (split (substr $g 3) "|") -}}
+ {{- with . -}}
+
+ {{- range (split . "," ) -}}
+
{{- . | htmlUnescape | safeHTML -}}
+ {{- end -}}
+
{{- end -}}
- {{- end -}}
-
-
{{ with .Get 0 }}{{ . }}{{ end}}
-
\ No newline at end of file
+ {{- end -}}
+
+ {{- end -}}
+ {{- end -}}
+
+
{{ with .Get 0 }}{{ . }}{{ end}}
+
diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/layouts/shortcodes/soundcloud.html b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/layouts/shortcodes/soundcloud.html
index 27a8229..a26db5b 100644
--- a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/layouts/shortcodes/soundcloud.html
+++ b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/layouts/shortcodes/soundcloud.html
@@ -1,10 +1,10 @@
{{ $id := index .Params 0 }}
{{ $type := index .Params 1 | default "track" }}
\ No newline at end of file
+ width="100%"
+ height="300"
+ scrolling="no"
+ frameborder="no"
+ allow="autoplay"
+ src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/{{ $type }}s/{{ $id }}&color=%23ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true">
+
diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/layouts/urls/baseof.html b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/layouts/urls/baseof.html
index f47940f..85953ac 100644
--- a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/layouts/urls/baseof.html
+++ b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/layouts/urls/baseof.html
@@ -1,12 +1,12 @@
-
- {{- partialCached "head.html" . -}}
-
{{- .Title }} - {{ .Site.Title -}}
- {{- partialCached "sandpointjs.html" . .RelPermalink -}}
-
-
- {{ block "urls" . }}{{ end }}
- {{- partialCached "footer.html" . -}}
-
+
+ {{- partialCached "head.html" . -}}
+
{{- .Title }} - {{ .Site.Title -}}
+ {{- partialCached "sandpointjs.html" . .RelPermalink -}}
+
+
+ {{ block "urls" . }}{{ end }}
+ {{- partialCached "footer.html" . -}}
+
diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/layouts/urls/list.html b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/layouts/urls/list.html
index 1896278..2e1eb98 100644
--- a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/layouts/urls/list.html
+++ b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/layouts/urls/list.html
@@ -1,106 +1,106 @@
{{ define "urls" }}
-
Backlinks, outgoing URLs, bibliographic references and internal links:
- {{ $s := partialCached "scratch.html" . }}
+
Backlinks, outgoing URLs, bibliographic references and internal links:
+ {{ $s := partialCached "scratch.html" . }}
-
[toggle expand/collapse]
-
- {{ range $p := .Site.RegularPages }}
- {{ with or ($p.Scratch.Get "urls") ($p.Scratch.Get "bibs") ($p.Scratch.Get "links") ($p.Scratch.Get "backlinks" )}}
-
{{ with $p.File }}{{- substr .Dir 0 -1 -}}⁄{{ end }}{{ $p.Title }}
+ [toggle expand/collapse]
+
+ {{ range $p := .Site.RegularPages }}
+ {{ with or ($p.Scratch.Get "urls") ($p.Scratch.Get "bibs") ($p.Scratch.Get "links") ($p.Scratch.Get "backlinks" )}}
+ {{ with $p.File }}{{- substr .Dir 0 -1 -}}⁄{{ end }}{{ $p.Title }}
+
+ {{ $pPath := printf "/%s" $p.File }}
+ {{ with $ss := $s.Get $pPath }}
+ {{ with $ss.backlinks }}
+ {{ range $i, $_ := $ss.backlinks }}
+ {{ if eq $i 0 }}
+ Mentioned in other Sandpoints pages ({{ len $ss.backlinks }}):
+ {{ end }}
+ - {{ with $_.File }}{{ substr .Dir 0 -1 }}⁄{{ end }}{{ $_.Title }}
+ {{ end }}
+
+ {{ end }}
+ {{ end }}
+
+ {{ with ($p.Scratch.Get "links") }}
+ {{ range $i, $_ := ($p.Scratch.Get "links") }}
+ {{ if eq $i 0 }}
+ Internal links to other Sandpoint pages ({{ len ($p.Scratch.Get "links") }}):
+ {{ end }}
+ - {{ with $_.File }}{{ substr .Dir 0 -1 }}⁄{{ end }}{{ $_.Title }}
+ {{ end }}
+
+ {{ end }}
+
+ {{ $http_links := (slice) }}
+ {{ $library_links := (slice) }}
+ {{ $anchor_links := (slice) }}
+ {{ $other_links := (slice) }}
+
+ {{ with ($p.Scratch.Get "urls") }}
+ {{- $c_prefix := $p.Site.Params.sandpointsCatalogPrefix | default "/library/" -}}
+ {{ range $i, $_ := ($p.Scratch.Get "urls") }}
+ {{ if strings.HasPrefix $_ "http" }}
+ {{ $http_links = $http_links | append $_ }}
+ {{ else if strings.HasPrefix $_ $c_prefix }}
+ {{ $library_links = $library_links | append $_ }}
+ {{ else}}
+ {{ $other_links = $other_links | append $_ }}
+ {{ end }}
+ {{ end }}
+ {{ end }}
+
+ {{ with $http_links }}
+ {{ range $i, $_ := $http_links }}
+ {{ if eq $i 0 }}
+ Outgoing links to other pages on Internet ({{ len $http_links }}):
+ {{ end }}
+ - www⁄{{ $_ }}
+ {{ end }}
+
+ {{ end }}
+
+ {{ with $library_links }}
+ {{ range $i, $_ := $library_links }}
+ {{ if eq $i 0 }}
+ Links to Sandpoint's library ({{ len $library_links }}):
+ {{ end }}
+ - lib⁄{{ $_ }}
+ {{ end }}
+
+ {{ end }}
+
+ {{ with ($p.Scratch.Get "bibs") }}
+ {{ range $i, $_ := ($p.Scratch.Get "bibs") }}
+ {{ if eq $i 0 }}
+ Bibliographic references ({{ len ($p.Scratch.Get "bibs") }}):
+ {{ end }}
+
+ {{ with $other_links }}
+ {{ $formattingN := 0 }}
+ {{ $anchorN := 0 }}
+ {{ range $i, $_ := $other_links }}
+ {{ if eq $i 0 }}
+ Anchor, formatting and other links ({{ len $other_links }}):
+ {{ end }}
+ {{ if strings.HasPrefix $_ "#" }}
+ {{ $anchorN = add $anchorN 1 }}
+ {{ else if strings.HasPrefix $_ "{"}}
+ {{ $formattingN = add $formattingN 1 }}
+ {{ else }}
+ - other⁄{{ $_ }}
+ {{ end }}
+ {{ end }}
+ {{ with $formattingN }}- {{ $formattingN }} formatting links.
{{ end }}
+ {{ with $anchorN }}- {{ $anchorN }} anchor links.
{{ end }}
+
+ {{ end }}
+
+
- {{ $pPath := printf "/%s" $p.File }}
- {{ with $ss := $s.Get $pPath }}
- {{ with $ss.backlinks }}
- {{ range $i, $_ := $ss.backlinks }}
- {{ if eq $i 0 }}
- Mentioned in other Sandpoints pages ({{ len $ss.backlinks }}):
- {{ end }}
- - {{ with $_.File }}{{ substr .Dir 0 -1 }}⁄{{ end }}{{ $_.Title }}
- {{ end }}
-
{{ end }}
- {{ end }}
-
- {{ with ($p.Scratch.Get "links") }}
- {{ range $i, $_ := ($p.Scratch.Get "links") }}
- {{ if eq $i 0 }}
- Internal links to other Sandpoint pages ({{ len ($p.Scratch.Get "links") }}):
- {{ end }}
- - {{ with $_.File }}{{ substr .Dir 0 -1 }}⁄{{ end }}{{ $_.Title }}
- {{ end }}
-
- {{ end }}
-
- {{ $http_links := (slice) }}
- {{ $library_links := (slice) }}
- {{ $anchor_links := (slice) }}
- {{ $other_links := (slice) }}
-
- {{ with ($p.Scratch.Get "urls") }}
- {{- $c_prefix := $p.Site.Params.sandpointsCatalogPrefix | default "/library/" -}}
- {{ range $i, $_ := ($p.Scratch.Get "urls") }}
- {{ if strings.HasPrefix $_ "http" }}
- {{ $http_links = $http_links | append $_ }}
- {{ else if strings.HasPrefix $_ $c_prefix }}
- {{ $library_links = $library_links | append $_ }}
- {{ else}}
- {{ $other_links = $other_links | append $_ }}
- {{ end }}
- {{ end }}
- {{ end }}
-
- {{ with $http_links }}
- {{ range $i, $_ := $http_links }}
- {{ if eq $i 0 }}
- Outgoing links to other pages on Internet ({{ len $http_links }}):
- {{ end }}
- - www⁄{{ $_ }}
- {{ end }}
-
- {{ end }}
-
- {{ with $library_links }}
- {{ range $i, $_ := $library_links }}
- {{ if eq $i 0 }}
- Links to Sandpoint's library ({{ len $library_links }}):
- {{ end }}
- - lib⁄{{ $_ }}
- {{ end }}
-
- {{ end }}
-
- {{ with ($p.Scratch.Get "bibs") }}
- {{ range $i, $_ := ($p.Scratch.Get "bibs") }}
- {{ if eq $i 0 }}
- Bibliographic references ({{ len ($p.Scratch.Get "bibs") }}):
- {{ end }}
-
- {{ with $other_links }}
- {{ $formattingN := 0 }}
- {{ $anchorN := 0 }}
- {{ range $i, $_ := $other_links }}
- {{ if eq $i 0 }}
- Anchor, formatting and other links ({{ len $other_links }}):
- {{ end }}
- {{ if strings.HasPrefix $_ "#" }}
- {{ $anchorN = add $anchorN 1 }}
- {{ else if strings.HasPrefix $_ "{"}}
- {{ $formattingN = add $formattingN 1 }}
- {{ else }}
- - other⁄{{ $_ }}
- {{ end }}
- {{ end }}
- {{ with $formattingN }}- {{ $formattingN }} formatting links.
{{ end }}
- {{ with $anchorN }}- {{ $anchorN }} anchor links.
{{ end }}
-
- {{ end }}
-
-
-
{{ end }}
- {{ end }}
{{ end }}
diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/static/css/site.min.css b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/static/css/site.min.css
index b7da8e2..11a51fc 100644
--- a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/static/css/site.min.css
+++ b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/static/css/site.min.css
@@ -1 +1 @@
-stdin 583:3 ⚠ grid-auto-rows is not supported by ie [autoprefixer] html,body,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:400}ul{list-style:none}button,input,select,textarea{margin:0}html{box-sizing:border-box}img,video{height:auto;max-width:100%}iframe{border:0}strong del{display:inline;text-decoration:none;margin-left:1rem;box-decoration-break:clone;-webkit-box-decoration-break:clone}table{border-collapse:collapse;border-spacing:0;background-color:#fff9f9;border-left:1px red solid;margin-left:1rem}td,th{padding:0;vertical-align:top;padding-right:1rem;padding-left:1rem;padding-bottom:.5rem}td:not([align]),th:not([align]){text-align:left}@font-face{font-family:vollkorn sc;font-style:normal;font-weight:400;src:url(../fonts/vollkorn-sc-v4-latin-ext_latin-regular.eot);src:local(""),url(../fonts/vollkorn-sc-v4-latin-ext_latin-regular.eot?#iefix)format("embedded-opentype"),url(../fonts/vollkorn-sc-v4-latin-ext_latin-regular.woff2)format("woff2"),url(../fonts/vollkorn-sc-v4-latin-ext_latin-regular.woff)format("woff"),url(../fonts/vollkorn-sc-v4-latin-ext_latin-regular.ttf)format("truetype"),url(../fonts/vollkorn-sc-v4-latin-ext_latin-regular.svg#VollkornSC)format("svg")}@font-face{font-family:vollkorn sc;font-style:normal;font-weight:600;src:url(../fonts/vollkorn-sc-v4-latin-ext_latin-600.eot);src:local(""),url(../fonts/vollkorn-sc-v4-latin-ext_latin-600.eot?#iefix)format("embedded-opentype"),url(../fonts/vollkorn-sc-v4-latin-ext_latin-600.woff2)format("woff2"),url(../fonts/vollkorn-sc-v4-latin-ext_latin-600.woff)format("woff"),url(../fonts/vollkorn-sc-v4-latin-ext_latin-600.ttf)format("truetype"),url(../fonts/vollkorn-sc-v4-latin-ext_latin-600.svg#VollkornSC)format("svg")}@font-face{font-family:vollkorn sc;font-style:normal;font-weight:700;src:url(../fonts/vollkorn-sc-v4-latin-ext_latin-700.eot);src:local(""),url(../fonts/vollkorn-sc-v4-latin-ext_latin-700.eot?#iefix)format("embedded-opentype"),url(../fonts/vollkorn-sc-v4-latin-ext_latin-700.woff2)format("woff2"),url(../fonts/vollkorn-sc-v4-latin-ext_latin-700.woff)format("woff"),url(../fonts/vollkorn-sc-v4-latin-ext_latin-700.ttf)format("truetype"),url(../fonts/vollkorn-sc-v4-latin-ext_latin-700.svg#VollkornSC)format("svg")}@font-face{font-family:vollkorn sc;font-style:normal;font-weight:900;src:url(../fonts/vollkorn-sc-v4-latin-ext_latin-900.eot);src:local(""),url(../fonts/vollkorn-sc-v4-latin-ext_latin-900.eot?#iefix)format("embedded-opentype"),url(../fonts/vollkorn-sc-v4-latin-ext_latin-900.woff2)format("woff2"),url(../fonts/vollkorn-sc-v4-latin-ext_latin-900.woff)format("woff"),url(../fonts/vollkorn-sc-v4-latin-ext_latin-900.ttf)format("truetype"),url(../fonts/vollkorn-sc-v4-latin-ext_latin-900.svg#VollkornSC)format("svg")}@font-face{font-family:vollkorn;font-style:italic;font-weight:500;src:url(../fonts/vollkorn-v12-latin-ext_latin-500italic.eot);src:local(""),url(../fonts/vollkorn-v12-latin-ext_latin-500italic.eot?#iefix)format("embedded-opentype"),url(../fonts/vollkorn-v12-latin-ext_latin-500italic.woff2)format("woff2"),url(../fonts/vollkorn-v12-latin-ext_latin-500italic.woff)format("woff"),url(../fonts/vollkorn-v12-latin-ext_latin-500italic.ttf)format("truetype"),url(../fonts/vollkorn-v12-latin-ext_latin-500italic.svg#Vollkorn)format("svg")}@font-face{font-family:vollkorn;font-style:normal;font-weight:400;src:url(../fonts/vollkorn-v12-latin-ext_latin-regular.eot);src:local(""),url(../fonts/vollkorn-v12-latin-ext_latin-regular.eot?#iefix)format("embedded-opentype"),url(../fonts/vollkorn-v12-latin-ext_latin-regular.woff2)format("woff2"),url(../fonts/vollkorn-v12-latin-ext_latin-regular.woff)format("woff"),url(../fonts/vollkorn-v12-latin-ext_latin-regular.ttf)format("truetype"),url(../fonts/vollkorn-v12-latin-ext_latin-regular.svg#Vollkorn)format("svg")}@font-face{font-family:vollkorn;font-style:normal;font-weight:500;src:url(../fonts/vollkorn-v12-latin-ext_latin-500.eot);src:local(""),url(../fonts/vollkorn-v12-latin-ext_latin-500.eot?#iefix)format("embedded-opentype"),url(../fonts/vollkorn-v12-latin-ext_latin-500.woff2)format("woff2"),url(../fonts/vollkorn-v12-latin-ext_latin-500.woff)format("woff"),url(../fonts/vollkorn-v12-latin-ext_latin-500.ttf)format("truetype"),url(../fonts/vollkorn-v12-latin-ext_latin-500.svg#Vollkorn)format("svg")}@font-face{font-family:vollkorn;font-style:italic;font-weight:400;src:url(../fonts/vollkorn-v12-latin-ext_latin-italic.eot);src:local(""),url(../fonts/vollkorn-v12-latin-ext_latin-italic.eot?#iefix)format("embedded-opentype"),url(../fonts/vollkorn-v12-latin-ext_latin-italic.woff2)format("woff2"),url(../fonts/vollkorn-v12-latin-ext_latin-italic.woff)format("woff"),url(../fonts/vollkorn-v12-latin-ext_latin-italic.ttf)format("truetype"),url(../fonts/vollkorn-v12-latin-ext_latin-italic.svg#Vollkorn)format("svg")}@font-face{font-family:great vibes;font-style:normal;font-weight:400;src:url(../fonts/great-vibes-v7-latin-ext_latin-regular.eot);src:local("Great Vibes"),local("GreatVibes-Regular"),url(../fonts/great-vibes-v7-latin-ext_latin-regular.eot?#iefix)format("embedded-opentype"),url(../fonts/great-vibes-v7-latin-ext_latin-regular.woff2)format("woff2"),url(../fonts/great-vibes-v7-latin-ext_latin-regular.woff)format("woff"),url(../fonts/great-vibes-v7-latin-ext_latin-regular.ttf)format("truetype"),url(../fonts/great-vibes-v7-latin-ext_latin-regular.svg#GreatVibes)format("svg")}html{line-height:1.5}body{font-family:vollkorn,serif;font-weight:400;max-width:1024px;font-size:1.4rem;padding-left:3rem;padding-top:.5rem;padding-right:2rem;color:#000}sup,sub{vertical-align:baseline;position:relative;top:-.4em}sub{top:.4em}.headiter{display:flex;justify-content:space-between;border-bottom:.3rem solid red;border-top:.1rem solid red;padding-top:1rem;padding-bottom:.5rem;padding-left:1rem;padding-right:1rem;margin-bottom:1rem}a.edit-button{color:#000;text-decoration:none}a.edit-button:hover{text-decoration:underline;-webkit-text-decoration-color:red;text-decoration-color:red;font-weight:500;font-size:.97em;cursor:pointer}.header{display:-ms-grid;display:grid;-ms-grid-columns:auto;grid-template-columns:auto;grid-auto-flow:column;position:-webkit-sticky;position:sticky;top:0;padding-top:.5rem;font-size:1.1rem;background-color:#fff;z-index:10}.mantlebar{display:none}.breadcrumbs{-ms-grid-column:1;grid-column:1}.bibliotheke{width:2.4rem;-ms-grid-column:2;grid-column:2;margin-left:auto}.bibliotheke:hover{text-decoration:none;font-size:1rem}.alsoin{font-weight:700;display:inline-flex;padding-left:.2rem;padding-right:.3rem}.ddmenu{cursor:pointer;display:-ms-inline-grid;display:inline-grid}.ddmenu input{display:none}.ddmenu li{list-style-type:none}.ddmenu .hiddendiv{display:none;margin-top:-.9rem}input:focus,select:focus,textarea:focus,label:focus,button:focus{outline:none}.ddmenu input:checked~.hiddendiv{display:block}.logolink{width:2.4rem;margin-left:auto}.sandpointlogo{border-radius:50%;border:.3em solid red;display:inline-flex;font-family:great vibes,cursive;font-size:1.2rem;font-weight:700;color:#fff;background-color:red;position:relative;padding-left:1em;padding-right:.3em;padding-bottom:1.2em;max-width:0;max-height:0}.sandpointF{position:absolute;font-size:1.2em;margin-top:-.2em;margin-left:-.4em}.sandpointN{position:absolute;font-size:.7em;margin-top:.4em;color:red;margin-left:-.5em}.sandpointC{position:absolute;font-size:1em;margin-left:-.37em}footer{display:flex;margin-bottom:1rem;margin-top:4rem}li{list-style-type:"› "}li[role=doc-endnote]{list-style-type:decimal}ol li{list-style-type:decimal}img{width:100%}.supt{display:inline-flex;flex-wrap:nowrap;font-family:great vibes,cursive;font-size:.9em;font-style:normal;color:rgba(0,0,0,.8);vertical-align:baseline;position:relative;top:-.3em}.sup{display:inline-flex;flex-wrap:nowrap;font-family:great vibes,cursive;font-size:.9em;font-style:normal;color:red;vertical-align:baseline;position:relative;top:-.3em}.sup:hover{font-weight:400!important}.nosup a{color:red}.nosup a span.sup{display:none}.syllabustitle,.coretitle{margin-top:4rem;font-style:italic;font-size:4rem;margin-bottom:4rem}.mantletitle,.crusttitle{margin-top:4rem;font-style:italic;font-size:2rem;margin-bottom:4rem}.grid{padding-left:3rem;margin-bottom:2rem;display:-ms-grid;display:grid;-ms-grid-columns:1fr 1fr;grid-template-columns:1fr 1fr}.leftcolumn{-ms-grid-column:1;grid-column:1;padding-right:1.2rem;position:relative}#TableOfContents{margin-left:-2rem;margin-top:-1.5rem}#TableOfContents li{list-style:decimal inside;padding-left:.5rem;color:rgba(0,0,0,.4);margin:0;padding:0}#TableOfContents li a{font-family:vollkorn;font-size:1.4rem;font-weight:500;font-style:normal}#TableOfContents>ol:first-child>span>li>a::after{content:"¶";color:rgba(0,0,0,.2);font-size:1.3em;padding-left:.1em}.rightcolumn{padding-left:.5rem}.has{display:-ms-inline-grid;display:inline-grid;-ms-grid-column:2;grid-column:2;grid-auto-rows:-webkit-max-content;grid-auto-rows:max-content;font-size:1.4rem;font-style:italic;margin-bottom:.8rem}.hasauthors{font-size:1.6rem!important}.hassup{-ms-grid-column:1;grid-column:1;font-family:great vibes,cursive;font-size:.9em;font-style:normal;color:red;vertical-align:baseline;position:relative}.afterhas{-ms-grid-column:2;grid-column:2}.content{margin-top:4rem;padding-left:3rem;padding-right:10rem;max-width:720px}a{color:#000;text-decoration:none}a:hover{text-decoration:underline;-webkit-text-decoration-color:red;text-decoration-color:red;font-weight:500;font-size:.97em;cursor:pointer}h1{display:none}h2{font-weight:500;font-size:1.6rem}h3{font-weight:500;font-size:1.4rem}h4{font-weight:500;font-size:1.2rem}h5{font-weight:500;font-size:1.1rem}h6{font-weight:500;font-size:1rem}.abstract{font-style:italic;border-left:1px solid #000;margin-left:5rem;margin-right:2rem;margin-bottom:1.2rem;padding-left:1rem;padding-right:2rem;padding-top:1.2rem;padding-bottom:1.2rem;background-color:rgba(0,0,0,.05);max-width:70ch}.authors{display:inline-block;font-size:1.8rem;margin-left:5rem;margin-right:2rem;padding-left:1rem}.keywords{display:inline-block;font-size:1.2rem;margin-left:5rem;margin-right:2rem;padding-left:1rem;padding-right:2rem;margin-bottom:2.2rem;max-width:72ch}blockquote{border-left:1px red solid;margin-left:1rem;margin-right:2rem;padding-left:1rem;padding-right:2rem;padding-top:.1rem;padding-bottom:.1rem;background-color:#fff9f9}h2+p:first-letter{font-family:great vibes,cursive;color:rgba(0,0,0,.8);font-size:1.5em;line-height:0}.hx{position:relative}.hpar{position:absolute;font-size:1.7em;font-style:normal;color:rgba(0,0,0,.1);top:0;margin-top:-.4em}.smallcaps{font-family:vollkorn sc,serif;font-weight:400}body{counter-reset:h2 glossN}h2{counter-reset:h3}h3{counter-reset:h4}h4{counter-reset:h5}h5{counter-reset:h6}h2:before{color:rgba(0,0,0,.4);counter-increment:h2;content:counter(h2)". "}h3:before{color:rgba(0,0,0,.4);counter-increment:h3;content:counter(h2)"." counter(h3)". "}h4:before{color:rgba(0,0,0,.4);counter-increment:h4;content:counter(h2)"." counter(h3)"." counter(h4)". "}h5:before{color:rgba(0,0,0,.4);counter-increment:h5;content:counter(h2)"." counter(h3)"." counter(h4)"." counter(h5)". "}h6:before{color:rgba(0,0,0,.4);counter-increment:h6;content:counter(h2)"." counter(h3)"." counter(h4)"." counter(h5)"." counter(h6)". "}h2.nocount:before,h3.nocount:before,h4.nocount:before,h5.nocount:before,h6.nocount:before{content:"";counter-increment:none}details{padding-left:1rem}#toggleAllLinks{font-size:.8rem}#toggleAllLinks:hover{cursor:pointer;text-decoration:underline;-webkit-text-decoration-color:red;text-decoration-color:red}.glosscontainer{display:-ms-grid;display:grid;-ms-grid-columns:auto 0 1fr;grid-template-columns:auto 1fr;-ms-grid-rows:1fr;grid-template-rows:1fr;gap:0 0;grid-template-areas:"glossnumber gloss";border-left:1px red solid;background-color:#fff9f9;padding-top:.4em;margin-top:1rem;margin-bottom:1rem;margin-left:1rem;margin-right:2rem;padding-bottom:.4em;padding-left:1rem;padding-right:2rem}.gloss{-ms-grid-row:1;-ms-grid-column:3;grid-area:gloss}.glossnumber{-ms-grid-row:1;-ms-grid-column:1;grid-area:glossnumber;padding-right:.6rem}.glossnumberAuto::before{counter-increment:glossN;content:"(" counter(glossN)")"}.glosswords{display:inline-block;padding-left:-.3rem;padding-right:1rem}.sitemap{padding-left:3rem;font-size:1.2rem}.sitemap a{color:rgba(0,0,0,.4)}.sitemap .sup{color:rgba(255,0,0,.7)}.highline a,.sitemap a:hover{color:#000}.highline .sup,.sitemap .sup:hover{color:red}.highline{font-size:1.6rem;color:#000;border-left:1px red solid;padding-left:1rem;padding-top:.1rem;padding-bottom:.1rem;background-color:#fff9f9}@media(max-width:767px){html{box-sizing:border-box;max-width:767px;margin:0 auto;padding:0}body{font-size:1rem;padding-left:10px;padding-right:10px}.grid{display:inline}.coretitle{margin-top:3rem;margin-bottom:2rem;font-size:2.2rem}.leftcolumn{display:none}.has,.afterhas{font-size:1.1rem}.mantle,.crust{margin-bottom:.2em}.content{padding:0;margin:0 auto;margin-top:4rem}.hpar{display:none}.mantletitle{font-size:1.7rem}.sessiongrid{display:none}}
\ No newline at end of file
+stdin 587:3 ⚠ grid-auto-rows is not supported by ie [autoprefixer] html,body,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:400}ul{list-style:none}button,input,select,textarea{margin:0}html{box-sizing:border-box}img,video{height:auto;max-width:100%}iframe{border:0}strong del{display:inline;text-decoration:none;margin-left:1rem;box-decoration-break:clone;-webkit-box-decoration-break:clone}table{border-collapse:collapse;border-spacing:0;background-color:#fff9f9;border-left:1px red solid;margin-left:1rem}td,th{padding:0;vertical-align:top;padding-right:1rem;padding-left:1rem;padding-bottom:.5rem}td:not([align]),th:not([align]){text-align:left}@font-face{font-family:vollkorn sc;font-style:normal;font-weight:400;src:url(../fonts/vollkorn-sc-v4-latin-ext_latin-regular.eot);src:local(""),url(../fonts/vollkorn-sc-v4-latin-ext_latin-regular.eot?#iefix)format("embedded-opentype"),url(../fonts/vollkorn-sc-v4-latin-ext_latin-regular.woff2)format("woff2"),url(../fonts/vollkorn-sc-v4-latin-ext_latin-regular.woff)format("woff"),url(../fonts/vollkorn-sc-v4-latin-ext_latin-regular.ttf)format("truetype"),url(../fonts/vollkorn-sc-v4-latin-ext_latin-regular.svg#VollkornSC)format("svg")}@font-face{font-family:vollkorn sc;font-style:normal;font-weight:600;src:url(../fonts/vollkorn-sc-v4-latin-ext_latin-600.eot);src:local(""),url(../fonts/vollkorn-sc-v4-latin-ext_latin-600.eot?#iefix)format("embedded-opentype"),url(../fonts/vollkorn-sc-v4-latin-ext_latin-600.woff2)format("woff2"),url(../fonts/vollkorn-sc-v4-latin-ext_latin-600.woff)format("woff"),url(../fonts/vollkorn-sc-v4-latin-ext_latin-600.ttf)format("truetype"),url(../fonts/vollkorn-sc-v4-latin-ext_latin-600.svg#VollkornSC)format("svg")}@font-face{font-family:vollkorn sc;font-style:normal;font-weight:700;src:url(../fonts/vollkorn-sc-v4-latin-ext_latin-700.eot);src:local(""),url(../fonts/vollkorn-sc-v4-latin-ext_latin-700.eot?#iefix)format("embedded-opentype"),url(../fonts/vollkorn-sc-v4-latin-ext_latin-700.woff2)format("woff2"),url(../fonts/vollkorn-sc-v4-latin-ext_latin-700.woff)format("woff"),url(../fonts/vollkorn-sc-v4-latin-ext_latin-700.ttf)format("truetype"),url(../fonts/vollkorn-sc-v4-latin-ext_latin-700.svg#VollkornSC)format("svg")}@font-face{font-family:vollkorn sc;font-style:normal;font-weight:900;src:url(../fonts/vollkorn-sc-v4-latin-ext_latin-900.eot);src:local(""),url(../fonts/vollkorn-sc-v4-latin-ext_latin-900.eot?#iefix)format("embedded-opentype"),url(../fonts/vollkorn-sc-v4-latin-ext_latin-900.woff2)format("woff2"),url(../fonts/vollkorn-sc-v4-latin-ext_latin-900.woff)format("woff"),url(../fonts/vollkorn-sc-v4-latin-ext_latin-900.ttf)format("truetype"),url(../fonts/vollkorn-sc-v4-latin-ext_latin-900.svg#VollkornSC)format("svg")}@font-face{font-family:vollkorn;font-style:italic;font-weight:500;src:url(../fonts/vollkorn-v12-latin-ext_latin-500italic.eot);src:local(""),url(../fonts/vollkorn-v12-latin-ext_latin-500italic.eot?#iefix)format("embedded-opentype"),url(../fonts/vollkorn-v12-latin-ext_latin-500italic.woff2)format("woff2"),url(../fonts/vollkorn-v12-latin-ext_latin-500italic.woff)format("woff"),url(../fonts/vollkorn-v12-latin-ext_latin-500italic.ttf)format("truetype"),url(../fonts/vollkorn-v12-latin-ext_latin-500italic.svg#Vollkorn)format("svg")}@font-face{font-family:vollkorn;font-style:normal;font-weight:400;src:url(../fonts/vollkorn-v12-latin-ext_latin-regular.eot);src:local(""),url(../fonts/vollkorn-v12-latin-ext_latin-regular.eot?#iefix)format("embedded-opentype"),url(../fonts/vollkorn-v12-latin-ext_latin-regular.woff2)format("woff2"),url(../fonts/vollkorn-v12-latin-ext_latin-regular.woff)format("woff"),url(../fonts/vollkorn-v12-latin-ext_latin-regular.ttf)format("truetype"),url(../fonts/vollkorn-v12-latin-ext_latin-regular.svg#Vollkorn)format("svg")}@font-face{font-family:vollkorn;font-style:normal;font-weight:500;src:url(../fonts/vollkorn-v12-latin-ext_latin-500.eot);src:local(""),url(../fonts/vollkorn-v12-latin-ext_latin-500.eot?#iefix)format("embedded-opentype"),url(../fonts/vollkorn-v12-latin-ext_latin-500.woff2)format("woff2"),url(../fonts/vollkorn-v12-latin-ext_latin-500.woff)format("woff"),url(../fonts/vollkorn-v12-latin-ext_latin-500.ttf)format("truetype"),url(../fonts/vollkorn-v12-latin-ext_latin-500.svg#Vollkorn)format("svg")}@font-face{font-family:vollkorn;font-style:italic;font-weight:400;src:url(../fonts/vollkorn-v12-latin-ext_latin-italic.eot);src:local(""),url(../fonts/vollkorn-v12-latin-ext_latin-italic.eot?#iefix)format("embedded-opentype"),url(../fonts/vollkorn-v12-latin-ext_latin-italic.woff2)format("woff2"),url(../fonts/vollkorn-v12-latin-ext_latin-italic.woff)format("woff"),url(../fonts/vollkorn-v12-latin-ext_latin-italic.ttf)format("truetype"),url(../fonts/vollkorn-v12-latin-ext_latin-italic.svg#Vollkorn)format("svg")}@font-face{font-family:great vibes;font-style:normal;font-weight:400;src:url(../fonts/great-vibes-v7-latin-ext_latin-regular.eot);src:local("Great Vibes"),local("GreatVibes-Regular"),url(../fonts/great-vibes-v7-latin-ext_latin-regular.eot?#iefix)format("embedded-opentype"),url(../fonts/great-vibes-v7-latin-ext_latin-regular.woff2)format("woff2"),url(../fonts/great-vibes-v7-latin-ext_latin-regular.woff)format("woff"),url(../fonts/great-vibes-v7-latin-ext_latin-regular.ttf)format("truetype"),url(../fonts/great-vibes-v7-latin-ext_latin-regular.svg#GreatVibes)format("svg")}html{line-height:1.5}body{font-family:vollkorn,serif;font-weight:400;max-width:1024px;font-size:1.4rem;padding-left:3rem;padding-top:.5rem;padding-right:2rem;color:#000}#preview{display:none}sup,sub{vertical-align:baseline;position:relative;top:-.4em}sub{top:.4em}.headiter{display:flex;justify-content:space-between;border-bottom:.3rem solid red;border-top:.1rem solid red;padding-top:1rem;padding-bottom:.5rem;padding-left:1rem;padding-right:1rem;margin-bottom:1rem}a.edit-button{color:#000;text-decoration:none}a.edit-button:hover{text-decoration:underline;-webkit-text-decoration-color:red;text-decoration-color:red;font-weight:500;font-size:.97em;cursor:pointer}.header{display:-ms-grid;display:grid;-ms-grid-columns:auto;grid-template-columns:auto;grid-auto-flow:column;position:-webkit-sticky;position:sticky;top:0;padding-top:.5rem;font-size:1.1rem;background-color:#fff;z-index:10}.mantlebar{display:none}.breadcrumbs{-ms-grid-column:1;grid-column:1}.bibliotheke{width:2.4rem;-ms-grid-column:2;grid-column:2;margin-left:auto}.bibliotheke:hover{text-decoration:none;font-size:1rem}.alsoin{font-weight:700;display:inline-flex;padding-left:.2rem;padding-right:.3rem}.ddmenu{cursor:pointer;display:-ms-inline-grid;display:inline-grid}.ddmenu input{display:none}.ddmenu li{list-style-type:none}.ddmenu .hiddendiv{display:none;margin-top:-.9rem}input:focus,select:focus,textarea:focus,label:focus,button:focus{outline:none}.ddmenu input:checked~.hiddendiv{display:block}.logolink{width:2.4rem;margin-left:auto}.sandpointlogo{border-radius:50%;border:.3em solid red;display:inline-flex;font-family:great vibes,cursive;font-size:1.2rem;font-weight:700;color:#fff;background-color:red;position:relative;padding-left:1em;padding-right:.3em;padding-bottom:1.2em;max-width:0;max-height:0}.sandpointF{position:absolute;font-size:1.2em;margin-top:-.2em;margin-left:-.4em}.sandpointN{position:absolute;font-size:.7em;margin-top:.4em;color:red;margin-left:-.5em}.sandpointC{position:absolute;font-size:1em;margin-left:-.37em}footer{display:flex;margin-bottom:1rem;margin-top:4rem}li{list-style-type:"› "}li[role=doc-endnote]{list-style-type:decimal}ol li{list-style-type:decimal}img{width:100%}.supt{display:inline-flex;flex-wrap:nowrap;font-family:great vibes,cursive;font-size:.9em;font-style:normal;color:rgba(0,0,0,.8);vertical-align:baseline;position:relative;top:-.3em}.sup{display:inline-flex;flex-wrap:nowrap;font-family:great vibes,cursive;font-size:.9em;font-style:normal;color:red;vertical-align:baseline;position:relative;top:-.3em}.sup:hover{font-weight:400!important}.nosup a{color:red}.nosup a span.sup{display:none}.syllabustitle,.coretitle{margin-top:4rem;font-style:italic;font-size:4rem;margin-bottom:4rem}.mantletitle,.crusttitle{margin-top:4rem;font-style:italic;font-size:2rem;margin-bottom:4rem}.grid{padding-left:3rem;margin-bottom:2rem;display:-ms-grid;display:grid;-ms-grid-columns:1fr 1fr;grid-template-columns:1fr 1fr}.leftcolumn{-ms-grid-column:1;grid-column:1;padding-right:1.2rem;position:relative}#TableOfContents{margin-left:-2rem;margin-top:-1.5rem}#TableOfContents li{list-style:decimal inside;padding-left:.5rem;color:rgba(0,0,0,.4);margin:0;padding:0}#TableOfContents li a{font-family:vollkorn;font-size:1.4rem;font-weight:500;font-style:normal}#TableOfContents>ol:first-child>span>li>a::after{content:"¶";color:rgba(0,0,0,.2);font-size:1.3em;padding-left:.1em}.rightcolumn{padding-left:.5rem}.has{display:-ms-inline-grid;display:inline-grid;-ms-grid-column:2;grid-column:2;grid-auto-rows:-webkit-max-content;grid-auto-rows:max-content;font-size:1.4rem;font-style:italic;margin-bottom:.8rem}.hasauthors{font-size:1.6rem!important}.hassup{-ms-grid-column:1;grid-column:1;font-family:great vibes,cursive;font-size:.9em;font-style:normal;color:red;vertical-align:baseline;position:relative}.afterhas{-ms-grid-column:2;grid-column:2}.content{margin-top:4rem;padding-left:3rem;padding-right:10rem;max-width:720px}a{color:#000;text-decoration:none}a:hover{text-decoration:underline;-webkit-text-decoration-color:red;text-decoration-color:red;font-weight:500;font-size:.97em;cursor:pointer}h1{display:none}h2{font-weight:500;font-size:1.6rem}h3{font-weight:500;font-size:1.4rem}h4{font-weight:500;font-size:1.2rem}h5{font-weight:500;font-size:1.1rem}h6{font-weight:500;font-size:1rem}.abstract{font-style:italic;border-left:1px solid #000;margin-left:5rem;margin-right:2rem;margin-bottom:1.2rem;padding-left:1rem;padding-right:2rem;padding-top:1.2rem;padding-bottom:1.2rem;background-color:rgba(0,0,0,.05);max-width:70ch}.authors{display:inline-block;font-size:1.8rem;margin-left:5rem;margin-right:2rem;padding-left:1rem}.keywords{display:inline-block;font-size:1.2rem;margin-left:5rem;margin-right:2rem;padding-left:1rem;padding-right:2rem;margin-bottom:2.2rem;max-width:72ch}blockquote{border-left:1px red solid;margin-left:1rem;margin-right:2rem;padding-left:1rem;padding-right:2rem;padding-top:.1rem;padding-bottom:.1rem;background-color:#fff9f9}h2+p:first-letter{font-family:great vibes,cursive;color:rgba(0,0,0,.8);font-size:1.5em;line-height:0}.hx{position:relative}.hpar{position:absolute;font-size:1.7em;font-style:normal;color:rgba(0,0,0,.1);top:0;margin-top:-.4em}.smallcaps{font-family:vollkorn sc,serif;font-weight:400}body{counter-reset:h2 glossN}h2{counter-reset:h3}h3{counter-reset:h4}h4{counter-reset:h5}h5{counter-reset:h6}h2:before{color:rgba(0,0,0,.4);counter-increment:h2;content:counter(h2)". "}h3:before{color:rgba(0,0,0,.4);counter-increment:h3;content:counter(h2)"." counter(h3)". "}h4:before{color:rgba(0,0,0,.4);counter-increment:h4;content:counter(h2)"." counter(h3)"." counter(h4)". "}h5:before{color:rgba(0,0,0,.4);counter-increment:h5;content:counter(h2)"." counter(h3)"." counter(h4)"." counter(h5)". "}h6:before{color:rgba(0,0,0,.4);counter-increment:h6;content:counter(h2)"." counter(h3)"." counter(h4)"." counter(h5)"." counter(h6)". "}h2.nocount:before,h3.nocount:before,h4.nocount:before,h5.nocount:before,h6.nocount:before{content:"";counter-increment:none}details{padding-left:1rem}#toggleAllLinks{font-size:.8rem}#toggleAllLinks:hover{cursor:pointer;text-decoration:underline;-webkit-text-decoration-color:red;text-decoration-color:red}.glosscontainer{display:-ms-grid;display:grid;-ms-grid-columns:auto 0 1fr;grid-template-columns:auto 1fr;-ms-grid-rows:1fr;grid-template-rows:1fr;gap:0 0;grid-template-areas:"glossnumber gloss";border-left:1px red solid;background-color:#fff9f9;padding-top:.4em;margin-top:1rem;margin-bottom:1rem;margin-left:1rem;margin-right:2rem;padding-bottom:.4em;padding-left:1rem;padding-right:2rem}.gloss{-ms-grid-row:1;-ms-grid-column:3;grid-area:gloss}.glossnumber{-ms-grid-row:1;-ms-grid-column:1;grid-area:glossnumber;padding-right:.6rem}.glossnumberAuto::before{counter-increment:glossN;content:"(" counter(glossN)")"}.glosswords{display:inline-block;padding-left:-.3rem;padding-right:1rem}.sitemap{padding-left:3rem;font-size:1.2rem}.sitemap a{color:rgba(0,0,0,.4)}.sitemap .sup{color:rgba(255,0,0,.7)}.highline a,.sitemap a:hover{color:#000}.highline .sup,.sitemap .sup:hover{color:red}.highline{font-size:1.6rem;color:#000;border-left:1px red solid;padding-left:1rem;padding-top:.1rem;padding-bottom:.1rem;background-color:#fff9f9}@media(max-width:767px){html{box-sizing:border-box;max-width:767px;margin:0 auto;padding:0}body{font-size:1rem;padding-left:10px;padding-right:10px}.grid{display:inline}.coretitle{margin-top:3rem;margin-bottom:2rem;font-size:2.2rem}.leftcolumn{display:none}.has,.afterhas{font-size:1.1rem}.mantle,.crust{margin-bottom:.2em}.content{padding:0;margin:0 auto;margin-top:4rem}.hpar{display:none}.mantletitle{font-size:1.7rem}.sessiongrid{display:none}}
\ No newline at end of file
diff --git a/_vendor/modules.txt b/_vendor/modules.txt
index c594d02..a4a89cf 100644
--- a/_vendor/modules.txt
+++ b/_vendor/modules.txt
@@ -1 +1 @@
-# git.sandpoints.org/Drawwell/SandpointsTheme v0.0.0-20201214030348-c507484d5529
+# git.sandpoints.org/Drawwell/SandpointsTheme v0.0.0-20201218222521-33a423ebe113