All {{.Title}}
- {{with .Params.description}} -{{.}}
- {{end}} - {{partial "page-list.html" .Paginator.Pages.ByLastmod.Reverse }} - {{ template "_internal/pagination.html" .}} -diff --git a/content/private/A note on the state of content within this site.md b/content/private/A note on the state of content within this site.md deleted file mode 100644 index f4569edf0..000000000 --- a/content/private/A note on the state of content within this site.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: On the state of content within this site -date: 2023-08-21 -lastmod: 2023-08021 -draft: false ---- - -This site is an ongoing work in progress. The links within are an attempt to capture a lot of moving targets. This means that the information here may or may not be the bleeding edge of what is true with respect the development within the Logos Collective projects. - -It is our aim to continuously get closer to that target, but we will continuously fail at that. If you know something is out of date or incorrect, raise an issue or make a PR. \ No newline at end of file diff --git a/content/authoring content.md b/content/private/quartz/authoring content.md similarity index 100% rename from content/authoring content.md rename to content/private/quartz/authoring content.md diff --git a/content/build.md b/content/private/quartz/build.md similarity index 100% rename from content/build.md rename to content/private/quartz/build.md diff --git a/content/configuration.md b/content/private/quartz/configuration.md similarity index 100% rename from content/configuration.md rename to content/private/quartz/configuration.md diff --git a/content/hosting.md b/content/private/quartz/hosting.md similarity index 100% rename from content/hosting.md rename to content/private/quartz/hosting.md diff --git a/content/layout.md b/content/private/quartz/layout.md similarity index 100% rename from content/layout.md rename to content/private/quartz/layout.md diff --git a/content/migrating from Quartz 3.md b/content/private/quartz/migrating from Quartz 3.md similarity index 100% rename from content/migrating from Quartz 3.md rename to content/private/quartz/migrating from Quartz 3.md diff --git a/content/philosophy.md b/content/private/quartz/philosophy.md similarity index 100% rename from content/philosophy.md rename to content/private/quartz/philosophy.md diff --git a/content/showcase.md b/content/private/quartz/showcase.md similarity index 100% rename from content/showcase.md rename to content/private/quartz/showcase.md diff --git a/content/upgrading.md b/content/private/quartz/upgrading.md similarity index 100% rename from content/upgrading.md rename to content/private/quartz/upgrading.md diff --git a/layouts/404.html b/layouts/404.html deleted file mode 100644 index 424839502..000000000 --- a/layouts/404.html +++ /dev/null @@ -1,16 +0,0 @@ - - -{{ partial "head.html" . }} - -
-- {{- .Inner | safeHTML }} --{{ .Page.Store.Set "hasMermaid" true }} \ No newline at end of file diff --git a/layouts/_default/_markup/render-image.html b/layouts/_default/_markup/render-image.html deleted file mode 100644 index dbcf732fd..000000000 --- a/layouts/_default/_markup/render-image.html +++ /dev/null @@ -1,9 +0,0 @@ -{{$src := .Destination | safeURL }} -{{$width := index (split .Text "|") 1 | default "auto" }} -{{$external := strings.HasPrefix $src "http" }} -{{- if $external -}} - -{{- else -}} -{{$fixedUrl := (cond (hasPrefix $src "/") $src (print "/" $src)) | urlize}} - -{{- end -}} diff --git a/layouts/_default/_markup/render-link.html b/layouts/_default/_markup/render-link.html deleted file mode 100644 index 4757b7284..000000000 --- a/layouts/_default/_markup/render-link.html +++ /dev/null @@ -1,16 +0,0 @@ -{{$trimmed := strings.TrimSuffix ".md" (.Destination | safeURL)}} -{{$dashedurl := replace $trimmed "%20" "-" }} -{{$external := strings.HasPrefix $dashedurl "http" }} -{{- if $external -}} -{{ .Text | safeHTML }} -{{- else -}} -{{$spacedurl := replace $trimmed "%20" " " }} -{{$fixedUrl := (cond (hasPrefix $spacedurl "/") $spacedurl (print "/" $spacedurl)) | urlize}} -{{$nonexistent := eq (.Page.GetPage $spacedurl).RelPermalink ""}} -{{$rooted := default $spacedurl ((.Page.GetPage $spacedurl).RelPermalink) }} -{{- .Text | safeHTML -}} - -{{- end -}} diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html deleted file mode 100644 index ccb3b93ac..000000000 --- a/layouts/_default/baseof.html +++ /dev/null @@ -1,10 +0,0 @@ - - -{{ block "head" . }} -{{ end }} - - -{{ block "main" . }} -{{ end }} - - \ No newline at end of file diff --git a/layouts/_default/section.html b/layouts/_default/section.html deleted file mode 100644 index 96611c4ce..000000000 --- a/layouts/_default/section.html +++ /dev/null @@ -1,22 +0,0 @@ - - -{{ partial "head.html" . }} - - -{{partial "search.html" .}} -
{{.}}
- {{end}} - {{partial "page-list.html" .Paginator.Pages.ByLastmod.Reverse }} - {{ template "_internal/pagination.html" .}} -{{.}}
- {{end}} - -{{.}}
- {{end}} - {{partial "page-list.html" .Paginator.Pages}} - {{ template "_internal/pagination.html" . }} -Search
- -" "" }} - {{ $blockquoteclasses := findRE `\[!.+\]` $content }} - {{ $blockquoteclasses1 := findRE "" $content }} - {{ $blockquotetags := findRE `blockquote class=callout` $content }} - {{ $counter := 0 }} - {{ $counter1 := 0 }} - {{ $finder := index $blockquoteclasses1 $counter }} - {{range $blockquotetags}} - {{ $finder = index $blockquoteclasses1 $counter }} - {{ if (in $finder "[!") }} - {{ $inner := index $blockquoteclasses $counter1 }} - {{ if (in $finder "]-") }} - {{ $inner = $inner | replaceRE `\[!([a-zA-Z]+)\]` `callout-collapsible callout-collapsed ${1}`}} - {{ else if (in $finder "]+") }} - {{ $inner = $inner | replaceRE `\[!([a-zA-Z]+)\]` `callout-collapsible ${1}`}} - {{ else}} - {{ $inner = $inner | replaceRE `\[!([a-zA-Z]+)\]` `${1}` }} - {{ end }} - {{ $inner = printf "blockquote class=\"%s-callout\"" $inner | lower}} - {{ $content = replace $content . $inner 1}} - {{ $counter1 = add $counter1 1 }} - {{ else }} - {{ $inner := print "blockquote" }} - {{ $content = replace $content . $inner 1}} - {{ end }} - {{ $counter = add $counter 1 }} - {{end}} - {{ $content = $content | replaceRE `\[![a-zA-Z]+\][-\+]?` "" }} - {{ $content = $content | replaceRE "blockquote class=callout" "blockquote" }} -{{end}} - -{{ $content | safeHTML }} diff --git a/layouts/partials/toc.html b/layouts/partials/toc.html deleted file mode 100644 index acda23d6d..000000000 --- a/layouts/partials/toc.html +++ /dev/null @@ -1,8 +0,0 @@ -{{ if (and $.Site.Data.config.enableToc (ne .Params.enableToc false) (gt .WordCount 250)) }} - -{{end}} diff --git a/quartz/styles/custom.scss b/quartz/styles/custom.scss index b908314b1..a450b90ba 100644 --- a/quartz/styles/custom.scss +++ b/quartz/styles/custom.scss @@ -1 +1,6 @@ // put your custom CSS here! + +html +body { + background-color:black; +} \ No newline at end of file(.|\n)*?