diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/JGDR Sandpoints theme customizations.md b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/JGDR Sandpoints theme customizations.md new file mode 100644 index 0000000..ba251db --- /dev/null +++ b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/JGDR Sandpoints theme customizations.md @@ -0,0 +1,16 @@ + + +Based on Dotawo customization + + +# Main CSS EDITS + +- EDIT keep original fonts (`static/css/site.min.css` & `static/fonts/` ) +- ADD definition for figcaption (`static/css/site.min.css`) +- ADD definition for code blocks (code ; `static/css/site.min.css`) +- EDIT table to add vertical line to the right (to distinguish from quotes etc) +- EDIT change print PDF size to B5 page size (`static/css/print.css`) + +# Layout edits +- render image caption and alt text as figcaption and hover text (`layouts/_default/render-image.html`) +- remove date from keyword list (`layouts/taxonomy/list.html`) \ No newline at end of file diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/layouts/_default/_markup/render-image.html b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/layouts/_default/_markup/render-image.html new file mode 100644 index 0000000..0f0b741 --- /dev/null +++ b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/layouts/_default/_markup/render-image.html @@ -0,0 +1,66 @@ +{{- $text_link := .Text -}} + +{{ $_ := newScratch }} +{{- range $k, $v := .Page.Site.Data.sandpointsnamegraph -}} + {{ $_.Add "triads" $k }} +{{- end -}} + +{{- if strings.HasPrefix .Destination "img:" -}} + {{- $img_params := (substr .Destination 4) -}} + {{- $img_src := index (split $img_params " ") 0 -}} + {{- $img_attr := index (split $img_params $img_src) 1 -}} + +{{- else if strings.HasPrefix .Destination "vid:" -}} + {{- $vid_params := (substr .Destination 4) -}} + {{- $vid_src := index (split $vid_params " ") 0 -}} + {{- $vid_attr := index (split $vid_params $vid_src) 1 -}} + +{{- else 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 -}} + bib⁄{{- $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 -}} + {{- 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 -}} +{{- else if findRE "^.*static" .Destination -}} + {{- .Title -}} + {{ if .Text }} +
{{with .Text }} {{ . }} {{end}}
+ {{ end }} +{{- else -}} + {{- .Text -}} + {{ if .Text }} +
{{with .Text }} {{ . }} {{end}}
+ {{ end }} +{{- end -}} diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/layouts/_default/_markup/render-link.html b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/layouts/_default/_markup/render-link.html new file mode 100644 index 0000000..b81c7a4 --- /dev/null +++ b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/layouts/_default/_markup/render-link.html @@ -0,0 +1 @@ +{{- .Page.Scratch.Add "urls" (slice .Destination) -}}{{- $t := .Text -}}{{- $sup := "" -}}{{- if and (strings.HasPrefix .Destination "{") (.Destination | strings.Count "}") -}}{{- range first 1 (split .Destination "}") -}}{{- range $frmt := (split (substr . 1) ",") -}}{{- if eq $frmt "sc" -}}{{- $t -}}{{- end -}}{{- end -}}{{- end -}}{{- else }}{{- if strings.HasPrefix .Destination "http" -}}{{- $sup = "www" -}}{{- end -}}{{- if strings.HasPrefix .Destination "#" -}}{{- $sup = "§" -}}{{- end -}}{{- $sup -}}⁄{{ .Text | safeHTML }}{{- end -}} diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/layouts/partials/header.html b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/layouts/partials/header.html new file mode 100644 index 0000000..c88addd --- /dev/null +++ b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/layouts/partials/header.html @@ -0,0 +1,114 @@ +{{ $s := partialCached "scratch.html" . }} + +{{ $currentDir := "" }} +{{ with .File }} + {{ $currentDir = .Dir }} +{{ end }} + +{{ $currentFile := (printf "/%s" .File) }} +{{ $scratch := $s.Get $currentFile }} + +{{ $is_in_ := newScratch }} +{{ with eq $scratch.depth "crust" }} + {{ range $scratch.is_in }} + {{ range $k,$v := $s.Get (printf "/%s" .File) }} + {{ if eq $k "is_in" }} + {{ range $v }} + {{ $is_in_.Set (printf "/%s" .File) (printf "/%s" .File) }} + {{ end }} + {{ end }} + {{ end }} + {{ end }} +{{ end }} + +{{ $is_in_is_in := (slice) }} +{{ range $is_in_.Values }} + {{ $is_in_is_in = $is_in_is_in | append ($.GetPage .) }} +{{ end }} + +{{ if eq hugo.Environment "gitea" }} +
+ EDIT_THIS + {{ with $scratch.core }}ADD_{{ index . 0 | upper }}{{ end }} + {{ with $scratch.mantle }}ADD_{{ index . 0 | upper }}{{ end }} + {{ with $scratch.crust }}ADD_{{ index . 0 | upper }}{{ end }} + {{ if not $scratch.core }}ADD_{{ substr $currentDir 0 -1 | upper }}{{ end }} + PUBLISH + ? +
+{{ else }} + {{ $editPage := $.Site.GetPage "/edit" }} +
+ EDIT_THIS + {{ with $scratch.core }}ADD_{{ index . 0 | upper }}{{ end }} + {{ with $scratch.mantle }}ADD_{{ index . 0 | upper }}{{ end }} + {{ with $scratch.crust }}ADD_{{ index . 0 | upper }}{{ end }} + {{ if not $scratch.core }}ADD_{{ substr $currentDir 0 -1 | upper }}{{ end }} +
+ +{{ end }} + +
+ + + + +
diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/layouts/partials/singlebody.html b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/layouts/partials/singlebody.html new file mode 100644 index 0000000..0e1be3d --- /dev/null +++ b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/layouts/partials/singlebody.html @@ -0,0 +1,105 @@ +{{ $s := partialCached "scratch.html" . }} + +{{ $currentNode := . }} +{{ $currentDir := "" }} +{{ with .File }} + {{ $currentDir = .Dir }} +{{ end }} +{{ $currentFile := (printf "/%s" .File) }} +{{ $scratch := $s.Get $currentFile }} + +{{ $sandnamePlural := (slice) }} +{{ $sandnameSingular := "" }} +{{ $mentionLink := "" }} + +
{{ substr $currentDir 0 -1 }}⁄{{ .Title }}
+ +
+
+ {{ if ne (trim .Page.TableOfContents "\n") "" }} + {{ .Page.TableOfContents }} + {{ end }} +
+
+ {{ $closeDivs := false }} + + {{ range $k, $v := $.Site.Data.sandpointsnamegraph }} + {{ $sandnamePlural = $sandnamePlural | append $v }} + {{ end }} + {{ $paramsKeys := (slice) }} + {{ range $k, $v := $currentNode.Params }} + {{ $paramsKeys = $paramsKeys | append $k }} + {{ end }} + {{ $mentions := intersect $paramsKeys $sandnamePlural }} + {{ range $mention := $mentions }} + {{ range $k, $m := index $currentNode.Params $mention }} + {{ range $k, $v := $.Site.Data.sandpointsnamegraph }} + {{ if eq $v $mention }} + {{ $mentionLink = printf "/%s/%s" $k $m }} + {{ $sandnameSingular = $k }} + {{ end }} + {{ end }} + {{- with $.GetPage $mentionLink -}} + {{- with not $k -}} + {{ $closeDivs = true }} +
+
{{ with (index $currentNode.Params $mention) }}{{ if gt (len (index $currentNode.Params $mention)) 1 }}{{ $mention }}{{ else }}{{ $sandnameSingular }}{{ end }}{{ end }}⁄
+
+ {{- end -}} +
+ {{ .Title }}{{ with .Params.affiliation }}, {{ . }}{{ end }} +
+ {{- end -}} + {{ end }} + {{- with $closeDivs -}}
{{ end }} + {{ end }} + + {{ if in .Page.Site.Params.sandpointsMentionedIn (substr $currentDir 0 -1) }} +
+ {{ with $scratch.backlinks }} +
mentioned in⁄
+ {{ end }} +
+ {{ range $scratch.backlinks }} + + {{ end }} +
+ {{ end }} + + {{ if and (not (eq $scratch.depth "crust")) $scratch.has_children }} +
+ {{ with $scratch.has }} +
has {{ $scratch.has }}⁄
+ {{ end }} +
+ {{ range $scratch.has_children }} + + {{ end }} +
+ {{ end }} + + {{ if eq $scratch.depth "crust" }} +
+
in {{ index $scratch.in 1 }}⁄
+
+ {{ range $scratch.is_in }} + + {{ end }} +
+ {{ end }} +
+
+ + +{{ with .Page.Params.abstract }}
abstract⁄{{ . | $.Page.RenderString | htmlUnescape | safeHTML }}
{{ end }} + +{{- $vld := false -}}{{- range $k, $v := .Page.Params.keywords -}}{{- if eq $k 0 -}}{{- $vld = true -}}
keywords⁄{{- $v -}}{{- else -}}, {{- $v -}}{{- end -}}{{- end -}}{{- with $vld -}}
{{- end -}} + +{{ $var := printf "repo={\"frontmatter\": %s, \"content\": %s, \"path\": \"%s\", \"relpermalink\": \"%s\" }" (jsonify .Params) (jsonify .RawContent) .File.Path .RelPermalink | resources.FromString (printf "js/repo/%s.js" .File.UniqueID) }} +{{ $dummy := $var.Permalink }} diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/layouts/taxonomy/list.html b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/layouts/taxonomy/list.html new file mode 100644 index 0000000..8c8f1bc --- /dev/null +++ b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/layouts/taxonomy/list.html @@ -0,0 +1,23 @@ +{{ define "keywords" }} + {{ $p := split (trim .RelPermalink "/") "/" }} + {{ if eq (len $p) 1 }} +
{{ index $p 0 }}⁄All
+ {{ range $taxonomyname, $taxonomy := .Site.Taxonomies }} + {{ if eq (index $p 0) $taxonomyname }} + {{ range $key, $value := $taxonomy }} + {{ $key }}({{ len (index (index $.Site.Taxonomies $taxonomyname) $key) }}) + {{ end }} + {{ end }} + {{ end }} + {{ else }} +
{{ index $p 0 }}⁄{{ index $p 1 }}
+ {{ range .Pages.ByDate.Reverse }} + +
{{ .Title }}
+ {{ range $n, $authorFile := .Params.authors }} + {{ $author := $.GetPage (printf "/author/%s" $authorFile) }} + {{ $author.Title }} + {{ end }} + {{ end }} + {{ end }} +{{ end }} diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/css/print.css b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/css/print.css new file mode 100644 index 0000000..10ece23 --- /dev/null +++ b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/css/print.css @@ -0,0 +1,262 @@ +/* JGDR CUSTOMIZATION +PAGE SIZE: B5 (6.9 × 9.8 inches) +keep margins the same +*/ + +@page { + size: 6.9in 9.8in; /*B5 page size */ + margin-bottom: 0.8in; + padding-bottom: 0.2in; + margin-top: 0.7in; +} + +/* +Original page size +@page { + size: 6.14in 9.21in; + margin-bottom: 0.8in; + padding-bottom: 0.2in; + margin-top: 0.7in; +} +*/ + +@page:left { + margin-right: 0.8in; + margin-left: 0.9in; + @bottom-left-corner { + content: counter(page); + font-size: 1rem; + vertical-align: text-top; + } + + @bottom { + content: element(runningTitle); + position: relative; + } +} + +@page:right { + margin-left: 0.8in; + margin-right: 0.9in; + @bottom-right-corner { + content: counter(page); + font-size: 1rem; + vertical-align: text-top; + } + + @bottom { + content: element(runningAuthors); + position: relative; + } +} + +@page crustpage :first { + @bottom-right-corner { + content: none; + } + @bottom { + content: none; + } +} + +@media print { + html { + font-size: 0.8em; + box-sizing: border-box; + margin: 0; + padding: 0; + } + body { + font-size: 1rem; + padding: 0; + margin: 0; + } + + .sup, + .hassup, + .supt { + color: red; + } + .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: 0.2em; + } + + .content { + padding: 0px; + margin: 0 auto; + margin-top: 4rem; + } + + .hpar { + display: none; + } + + .mantletitle { + font-size: 1.7rem; + } + + .sessiongrid { + display: none; + } + + #bibliography { + break-before: page; + } + + .footnotes ol { + margin-top: 3rem; + padding-left: 0.9rem; + } + + .footnotes hr { + border: none; + border-top: 0px; + text-align: left; + margin-top: 2rem; + margin-bottom: -2rem; + } + + .footnotes hr::after { + content: "Endnotes"; + font-size: 1.2rem; + font-weight: bold; + } + + .runningTitle { + position: running(runningTitle); + } + + .runningAuthors { + position: running(runningAuthors); + } + + .hasauthors .afterhas { + font-size: 1.5rem; + } + + .crustpage { + break-before: page; + page: crustpage; + } + + .hasin { + display: none; + } + + .abstract { + margin-left: 0; + margin-right: 0; + max-width: inherit; + } + + .keywords { + margin-left: 0; + margin-right: 0; + max-width: inherit; + padding-left: 0; + padding-right: 0; + font-size: 0.9rem; + } + /* + h2:before, + h3:before, + h4:before, + h5:before { + content: none; + } + */ + h2, h3, hr { + break-after: avoid; + } + + table { + font-size: 0.94rem; + } + + .glosscontainer, + table, + table + p, + tr, + blockquote, + li { + break-inside: avoid; + } + + .authorpage { + break-before: page; + } + + img { + display: block; + max-height: 150mm; + width: auto; + break-after: avoid; + margin-bottom: 0.5rem; + margin-left: 1rem; + } + + .crustoc { + position: relative; + bottom: 0 + } + + a.toc::before { + direction: rtl; + content: " . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . "" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . "" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . "" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . "; + line-height: 0; + height: 1px; + position: absolute; + bottom: 10px; + z-index: -1; + } + + a.toc { + display: grid; + grid-template-columns: 1fr auto; + align-items: flex-end; + } + + a.toc span { + } + + a.toc .back { + background: white; + } + + a.toc::after { + text-align: right; + float: right; + content: target-counter(attr(href url), page, decimal-leading-zero); + background: white; + padding-left: 0.1rem; + } + + ol[data-split-from] { + padding-left: 0.5rem; + } + + .longesttitle { + visibility: hidden; + cursor: default; + } +} diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/css/site.min.css b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/css/site.min.css new file mode 100644 index 0000000..1ffcfa9 --- /dev/null +++ b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/css/site.min.css @@ -0,0 +1,651 @@ +/* + +THIS IS BASED ON THE DOTAWO CUSTOMIZATION +INCLUDING MODIFICATIONS: +- Use original Sandpoints fonts +- EDIT table: add vert line to the right +- ADD figcaption +- EDIT pre (font scale, line wrapping) +- ADD code (border and background) + +all edits include a comment including the keyword anybody + +*/ + +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; + border-right: 1px red solid; /* CUSTOMIZATION add border to the right as well (anybody)*/ + 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 +} + +/*DOTAWO FONTS*/ +/* +@font-face{ + font-family:gentium plus; + font-style:normal; + src:url(../fonts/GentiumPlus-R.woff),url(../fonts/GentiumPlus-R.woff)format("woff") +} +@font-face{ + font-family:gentium plus; + font-style:italic; + src:url(../fonts/GentiumPlus-I.woff),url(../fonts/GentiumPlus-I.woff)format("woff") +} +@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") +} +@font-face{ + font-family:antinoou; + font-style:normal; + src:url(../fonts/Antinoou.ttf),url(../fonts/Antinoou.ttf)format("truetype"); + unicode-range:U+2C80–U+2CFF,U+0370–U+03FF,U+102E0–U+102FF +} +@font-face{ + font-family:antinoou; + font-style:italic; + src:url(../fonts/AntinoouItalic.ttf),url(../fonts/AntinoouItalic.ttf)format("truetype"); + unicode-range:U+2C80–U+2CFF,U+0370–U+03FF,U+102E0–U+102FF +} +*/ +/* ORIGINAL FONTS ADD HERE */ + + +@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") +} + +/* END FONTS */ + + + + +html{ + line-height:1.5 +} +body{ + font-family: vollkorn,serif; /*gentium plus,antinoou,serif;*/ + 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:700; + cursor:pointer +} +.header{ + display:grid; + grid-template-columns:auto; + grid-auto-flow:column; + position:sticky; + top:0; + padding-top:.5rem; + font-size:1.1rem; + background-color:#fff; + z-index:10 +} +.mantlebar{ + display:none +} +.breadcrumbs{ + grid-column:1 +} +.bibliotheke{ + width:2.4rem; + 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: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 +} +.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:grid; + grid-template-columns:1fr 1fr +} +.leftcolumn{ + 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; /*gentium plus;*/ + font-size:1.4rem; + font-weight:700 +} +.counters{ + color:rgba(0,0,0,.4) +} +.rightcolumn{ + padding-left:.5rem +} +.has{ + display:inline-grid; + grid-column:2; + grid-auto-rows:max-content; + font-size:1.4rem; + font-style:italic; + margin-bottom:.8rem +} +.hasauthors{ + font-size:1.6rem!important; + display:flex +} +.hassup{ + grid-column:1; + font-family:great vibes,cursive; + font-size:.9em; + font-style:normal; + color:red; + vertical-align:baseline; + position:relative +} +.afterhas{ + grid-column:2 +} +.content{ + margin-top:4rem; + padding-left:3rem; + padding-right:10rem; + max-width:720px +} +a{ + color:#000; + text-decoration:none +} + +/* +NOTE: THIS MAKES THE FONT LARGER ON HOVER +Needs fixing, because the text changes in length + font-weight:700; +*/ + +a:hover{ + text-decoration:underline; + text-decoration-color:red; + /*font-weight:700;*/ + cursor:pointer +} +h1{ + display:none +} +h2{ + font-weight:700; + font-size:1.6rem +} +h3{ + font-weight:700; + font-size:1.4rem +} +h4{ + font-weight:700; + font-size:1.2rem +} +h5{ + font-weight:700; + font-size:1.1rem +} +h6{ + font-weight:700; + 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,5%); + 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 +} +.hx{ + position:relative +} +.hpar{ + display:none +} +.smallcaps{ + font-family:vollkorn sc,serif; + font-weight:400 + /* + font-family:gentium plus,serif; + font-variant:small-caps + */ +} + +pre {/*edited by anybody*/ + padding-left:1rem; + border: 1px red solid; + background-color:#fff5f5; + font-size:75%; + white-space: break-spaces; +} +code { /*edited by anybody; added background color same as in pre above*/ + background-color: #fff5f5; +} +figcaption {/*edited by anybody*/ + margin-left:1rem; + font-size: 75%; + margin-bottom:1rem; + margin-top: 0rem; +} + +details{ + padding-left:1rem +} +#toggleAllLinks{ + font-size:.8rem +} +#toggleAllLinks:hover{ + cursor:pointer; + text-decoration:underline; + text-decoration-color:red +} +.glosscontainer{ + display:grid; + grid-template-columns:auto 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{ + grid-area:gloss +} +.glossnumber{ + 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 +} +.affiliation{ + font-size:smaller +} +@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 + } +} diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/great-vibes-v7-latin-ext_latin-regular.eot b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/great-vibes-v7-latin-ext_latin-regular.eot new file mode 100644 index 0000000..a1fd8f4 Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/great-vibes-v7-latin-ext_latin-regular.eot differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/great-vibes-v7-latin-ext_latin-regular.svg b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/great-vibes-v7-latin-ext_latin-regular.svg new file mode 100644 index 0000000..fd0ec65 --- /dev/null +++ b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/great-vibes-v7-latin-ext_latin-regular.svg @@ -0,0 +1,581 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/great-vibes-v7-latin-ext_latin-regular.ttf b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/great-vibes-v7-latin-ext_latin-regular.ttf new file mode 100644 index 0000000..d3f4bca Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/great-vibes-v7-latin-ext_latin-regular.ttf differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/great-vibes-v7-latin-ext_latin-regular.woff b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/great-vibes-v7-latin-ext_latin-regular.woff new file mode 100644 index 0000000..5b46304 Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/great-vibes-v7-latin-ext_latin-regular.woff differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/great-vibes-v7-latin-ext_latin-regular.woff2 b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/great-vibes-v7-latin-ext_latin-regular.woff2 new file mode 100644 index 0000000..6442cfa Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/great-vibes-v7-latin-ext_latin-regular.woff2 differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-600.eot b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-600.eot new file mode 100644 index 0000000..e807f05 Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-600.eot differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-600.svg b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-600.svg new file mode 100644 index 0000000..caec8a8 --- /dev/null +++ b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-600.svg @@ -0,0 +1,437 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-600.ttf b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-600.ttf new file mode 100644 index 0000000..1c480a2 Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-600.ttf differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-600.woff b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-600.woff new file mode 100644 index 0000000..3018662 Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-600.woff differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-600.woff2 b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-600.woff2 new file mode 100644 index 0000000..0c55ed8 Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-600.woff2 differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-700.eot b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-700.eot new file mode 100644 index 0000000..20d6573 Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-700.eot differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-700.svg b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-700.svg new file mode 100644 index 0000000..ced96d6 --- /dev/null +++ b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-700.svg @@ -0,0 +1,436 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-700.ttf b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-700.ttf new file mode 100644 index 0000000..c1fd445 Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-700.ttf differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-700.woff b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-700.woff new file mode 100644 index 0000000..571854a Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-700.woff differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-700.woff2 b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-700.woff2 new file mode 100644 index 0000000..9e67d0a Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-700.woff2 differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-900.eot b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-900.eot new file mode 100644 index 0000000..3e1a0fd Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-900.eot differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-900.svg b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-900.svg new file mode 100644 index 0000000..c60df64 --- /dev/null +++ b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-900.svg @@ -0,0 +1,441 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-900.ttf b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-900.ttf new file mode 100644 index 0000000..72d32b2 Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-900.ttf differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-900.woff b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-900.woff new file mode 100644 index 0000000..b3fc465 Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-900.woff differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-900.woff2 b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-900.woff2 new file mode 100644 index 0000000..666d061 Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-900.woff2 differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-regular.eot b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-regular.eot new file mode 100644 index 0000000..53b418e Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-regular.eot differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-regular.svg b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-regular.svg new file mode 100644 index 0000000..b77ed8b --- /dev/null +++ b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-regular.svg @@ -0,0 +1,434 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-regular.ttf b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-regular.ttf new file mode 100644 index 0000000..d97731d Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-regular.ttf differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-regular.woff b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-regular.woff new file mode 100644 index 0000000..34d574a Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-regular.woff differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-regular.woff2 b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-regular.woff2 new file mode 100644 index 0000000..2360d2f Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-sc-v4-latin-ext_latin-regular.woff2 differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-500.eot b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-500.eot new file mode 100644 index 0000000..4b648de Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-500.eot differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-500.svg b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-500.svg new file mode 100644 index 0000000..519081e --- /dev/null +++ b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-500.svg @@ -0,0 +1,516 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-500.ttf b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-500.ttf new file mode 100644 index 0000000..af39216 Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-500.ttf differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-500.woff b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-500.woff new file mode 100644 index 0000000..efe0e72 Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-500.woff differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-500.woff2 b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-500.woff2 new file mode 100644 index 0000000..058eb2e Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-500.woff2 differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-500italic.eot b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-500italic.eot new file mode 100644 index 0000000..1985a5d Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-500italic.eot differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-500italic.svg b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-500italic.svg new file mode 100644 index 0000000..edcacb9 --- /dev/null +++ b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-500italic.svg @@ -0,0 +1,511 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-500italic.ttf b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-500italic.ttf new file mode 100644 index 0000000..66fab01 Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-500italic.ttf differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-500italic.woff b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-500italic.woff new file mode 100644 index 0000000..ab8712e Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-500italic.woff differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-500italic.woff2 b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-500italic.woff2 new file mode 100644 index 0000000..9ff6246 Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-500italic.woff2 differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-italic.eot b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-italic.eot new file mode 100644 index 0000000..cd501a6 Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-italic.eot differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-italic.svg b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-italic.svg new file mode 100644 index 0000000..7a47d67 --- /dev/null +++ b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-italic.svg @@ -0,0 +1,511 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-italic.ttf b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-italic.ttf new file mode 100644 index 0000000..ce0bcb1 Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-italic.ttf differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-italic.woff b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-italic.woff new file mode 100644 index 0000000..1388686 Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-italic.woff differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-italic.woff2 b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-italic.woff2 new file mode 100644 index 0000000..74a8889 Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-italic.woff2 differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-regular.eot b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-regular.eot new file mode 100644 index 0000000..9185676 Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-regular.eot differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-regular.svg b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-regular.svg new file mode 100644 index 0000000..c411210 --- /dev/null +++ b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-regular.svg @@ -0,0 +1,516 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-regular.ttf b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-regular.ttf new file mode 100644 index 0000000..c30f35b Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-regular.ttf differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-regular.woff b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-regular.woff new file mode 100644 index 0000000..aa06e7b Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-regular.woff differ diff --git a/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-regular.woff2 b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-regular.woff2 new file mode 100644 index 0000000..a7c150f Binary files /dev/null and b/_vendor/git.sandpoints.org/Drawwell/SandpointsTheme/customizations/jgdr/static/fonts/vollkorn-v12-latin-ext_latin-regular.woff2 differ diff --git a/config.toml b/config.toml index de68d20..3074def 100644 --- a/config.toml +++ b/config.toml @@ -83,41 +83,86 @@ target = "data" source = "exampleSite/content/metadata/_index.md" target = "content/metadata/_index.md" -## below is the example of custom css imported from customizations directory of Dotawo project -# -# [[module.imports.mounts]] -# source = "customizations/Dotawo/assets/css/site.css" -# target = "assets/css/site.css" -# [[module.imports.mounts]] -# source = "customizations/Dotawo/static/css/site.min.css" -# target = "static/css/site.min.css" +# CUSTOMIZATIONS - DOTAWO (15/8/23) # below is the list of imports to get the svelte webapp # which handles editing the website -# +# [[module.imports.mounts]] +# source = "customizations/Dotawo/static/fonts" +# target = "static/fonts" +# [[module.imports.mounts]] +# source = "customizations/Dotawo/assets/css/site.css" +# target = "assets/css/site.css" +# [[module.imports.mounts]] +# source = "customizations/Dotawo/static/css/site.min.css" +# target = "static/css/site.min.css" +# [[module.imports.mounts]] +# source = "customizations/Dotawo/layouts/partials/header.html" +# target = "layouts/partials/header.html" +# [[module.imports.mounts]] +# source = "customizations/Dotawo/layouts/partials/singlebody.html" +# target = "layouts/partials/singlebody.html" +# [[module.imports.mounts]] +# source = "customizations/Dotawo/layouts/_default/_markup/render-image.html" +# target = "layouts/_default/_markup/render-image.html" +# [[module.imports.mounts]] +# source = "customizations/Dotawo/layouts/_default/_markup/render-link.html" +# target = "layouts/_default/_markup/render-link.html" + + +# TEST CUSTOMIZATION ########################## + +# MOUNT CUSTOM FONTS +## Vanilla Fonts [[module.imports.mounts]] -source = "customizations/Dotawo/static/fonts" +source = "customizations/jgdr/static/fonts" target = "static/fonts" +# MOUNT CUSTOM CSS +## add figcaption +## add code +## edit pre (font scale) +## eding table (vert line right) [[module.imports.mounts]] -source = "customizations/Dotawo/assets/css/site.css" -target = "assets/css/site.css" -[[module.imports.mounts]] -source = "customizations/Dotawo/static/css/site.min.css" +source = "customizations/jgdr/static/css/site.min.css" target = "static/css/site.min.css" +# MOUNT CUSTOM PRINT CSS +## B5 page size [[module.imports.mounts]] -source = "customizations/Dotawo/layouts/partials/header.html" -target = "layouts/partials/header.html" +source = "customizations/jgdr/static/css/print.css" +target = "static/css/print.css" + +# MOUNT CUSTOM RENDERER FOR IMAGE +## INCLUDE figcaption and hover text(alt) [[module.imports.mounts]] -source = "customizations/Dotawo/layouts/partials/singlebody.html" -target = "layouts/partials/singlebody.html" -[[module.imports.mounts]] -source = "customizations/Dotawo/layouts/_default/_markup/render-image.html" +source = "customizations/jgdr/layouts/_default/_markup/render-image.html" target = "layouts/_default/_markup/render-image.html" +# MOUNT CUSTOM RENDERER FOR LIST +## remove date from keyword list [[module.imports.mounts]] -source = "customizations/Dotawo/layouts/_default/_markup/render-link.html" +source = "customizations/jgdr/layouts/taxonomy/list.html" +target = "layouts/taxonomy/list.html" + +# FROM DOTAWO + +# [[module.imports.mounts]] +# source = "customizations/Dotawo/assets/css/site.css" +# target = "assets/css/site.css" + +# MOUNT CUSTOM HEADER (DOTAWO CUSTOMIZATIONS) +[[module.imports.mounts]] +source = "customizations/jgdr/layouts/partials/header.html" +target = "layouts/partials/header.html" +# MOUNT CUSTOM SINGLE BODY (DOTAWO CUSTOMIZATIONS) +[[module.imports.mounts]] +source = "customizations/jgdr/layouts/partials/singlebody.html" +target = "layouts/partials/singlebody.html" +# MOUNT CUSTOM RENDER LINK (DOTAWO CUSTOMIZATIONS) +[[module.imports.mounts]] +source = "customizations/jgdr/layouts/_default/_markup/render-link.html" target = "layouts/_default/_markup/render-link.html" + # [[module.imports]] path = "git.sandpoints.org/Drawwell/SandpointsEditPage"