commit 59cf49c026d59527288a8da12ec8bd6f21e35857 Author: Rika T. Date: Mon Jun 22 16:50:45 2026 +0000 moved project into new repo diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..8aa2645 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) [year] [fullname] + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..7cec74e --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +# Theme Name + +## Features + +## Installation + +## Configuration diff --git a/archetypes/addenda.md b/archetypes/addenda.md new file mode 100644 index 0000000..297596b --- /dev/null +++ b/archetypes/addenda.md @@ -0,0 +1,10 @@ ++++ +title = '' # should describe reason for this addendum +date = {{ .Date }} +publishDate = {{ .Date }} +draft = true +# @TODO find way to construct referene to post URL for below field +ref = '' # link to post this is an addendum for +fnote = 'a1' # should refer back to a footnote in given context--footnote must always have letter 'a' prefix integer +editor = 'admin' ++++ diff --git a/archetypes/categories.md b/archetypes/categories.md new file mode 100644 index 0000000..471f01c --- /dev/null +++ b/archetypes/categories.md @@ -0,0 +1,6 @@ ++++ +title = '{{ index (split .Dir "/" | last 2) 0 | title }}' +summary = '' +draft = true +image = '/images/{{ index (split .Dir "/" | last 2) 0 }}' ++++ \ No newline at end of file diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..f50fd62 --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,9 @@ ++++ +title = '{{ replace .File.ContentBaseName "-" " " | title }}' +# kind = '' +draft = true ++++ + +Laborum voluptate pariatur ex culpa magna nostrud est incididunt fugiat +pariatur do dolor ipsum enim. Consequat tempor do dolor eu. Non id id anim anim +excepteur excepteur pariatur nostrud qui irure ullamco. diff --git a/archetypes/posts.md b/archetypes/posts.md new file mode 100644 index 0000000..d9b71ba --- /dev/null +++ b/archetypes/posts.md @@ -0,0 +1,13 @@ ++++ +title = '{{ index (split .Dir "/" | last 2) 0 | replace "-" " " | title }}' +date = {{ .Date }} +publishDate = {{ .Date }} +draft = true +tags = [] +categories = [] +author = 'admin' +editor = 'admin' +type = 'post' +# style = 'prose' +hidden = false ++++ diff --git a/assets/css/abstracts/_fonts.sass b/assets/css/abstracts/_fonts.sass new file mode 100644 index 0000000..2b34353 --- /dev/null +++ b/assets/css/abstracts/_fonts.sass @@ -0,0 +1,13 @@ +@use 'fun' + +@include fun.create_font("headerTitle", "Cronicle.ttf") +@include fun.create_font("postTitle", "Satanic_Demon.ttf") +@include fun.create_font("postMatter", "erika-pl.regular.ttf") +// @include fun.create_font("postContent", "faustus.regular.ttf") +@include fun.create_font("postContent", "vinque.regular.otf") +@include fun.create_font("postFirstChar", "goudy-initialen.regular.ttf") +@include fun.create_font("catTerm", "CaesarDressing.regular.ttf") +@include fun.create_font("navFont", "black-magnet.regular.otf") +@include fun.create_font("pageFont", "Almendra.regular.ttf") +@include fun.create_font("encryptedFont", "Drachenklaue.ttf") +@include fun.create_font("codeFont", "blockblueprint.medium.ttf") diff --git a/assets/css/abstracts/_fun.sass b/assets/css/abstracts/_fun.sass new file mode 100644 index 0000000..ca7d7e2 --- /dev/null +++ b/assets/css/abstracts/_fun.sass @@ -0,0 +1,4 @@ +@mixin create_font($name, $font_basename) + @font-face + font-family: $name + src: url('fonts/' + $font_basename) \ No newline at end of file diff --git a/assets/css/abstracts/_palette.sass b/assets/css/abstracts/_palette.sass new file mode 100644 index 0000000..7d9b156 --- /dev/null +++ b/assets/css/abstracts/_palette.sass @@ -0,0 +1,9 @@ +@use 'sass:color' as brush + +$white: #ffffff +$black: #000000 +$bg: #121212 +$accent: #9d1934 +$fg: #cccccc +$state: #e9b074 +$canvas: brush.adjust(brush.adjust($bg, $lightness: 1.5%), $red: 3%, $green: 1.75%) \ No newline at end of file diff --git a/assets/css/base/_site.sass b/assets/css/base/_site.sass new file mode 100644 index 0000000..bb46db5 --- /dev/null +++ b/assets/css/base/_site.sass @@ -0,0 +1,394 @@ +@use '../abstracts/palette' as c +@use 'sass:color' as brush +@forward '../abstracts/fonts' +@forward '../components/cblocks' + +::selection + background-color: c.$state + color: c.$bg + +html + background-color: c.$canvas + background-image: url("images/rocky_wall.png") + +header + border-bottom: 5px solid c.$state + margin-bottom: 1rem + + & h1 + font-family: headerTitle + text-align: center + font-size: clamp(16pt, 3vw, 72pt) + + & nav + text-align: center + font-family: navFont + font-size: clamp(16pt, 1.5vw, 24pt) + margin: 6% + + & > a + padding: 3% + margin: 3% + +body + color: c.$fg + /* line-height: 1.5 */ + /* margin: 1rem */ + margin: 0 auto + // min-width: 33vw + width: 50vw + max-width: 900px + + & main + background-color: rgba(c.$bg, 0.7) + border-radius: 2% + +.directory + padding: 3% 5% + +@keyframes rise-and-shine + 0% + top: 0vh + 100% + top: -15vh + +@keyframes morningside + 0% + background: radial-gradient(circle at 15vw, c.$bg 60%, c.$accent) + 100% + background: radial-gradient(circle at 7.5vw, c.$bg 66%, c.$accent) + +.black-hole.wrap + z-index: -1 + position: absolute + top: -15vh + text-align: center + filter: drop-shadow(-5px 4px 20px rgba(c.$accent, 0.5)) + animation: rise-and-shine 5s ease-out + + & #black-hole + width: 50vw + max-width: 900px + height: 50vw + max-height: 900px + margin: 0 auto + shape-outside: circle(50%) + clip-path: circle(45vw) + background-color: c.$bg + border-radius: 50% + background: radial-gradient(circle at 7.5vw, c.$bg 66%, c.$accent) + animation: morningside 5s ease-in + transform: rotate(-90deg) + +#page #title + font-family: postTitle + margin-left: 1.5vw + +#content.page + font-family: pageFont + font-size: clamp(10pt, 1.5vw, 18pt) + margin: 5% 15% 0 + padding: 5% 0 5% + +.expo > #title + padding-top: 0px + +#posts + padding: 3% 10% + + & > a + &:has(.post) + display: block + transform: rotate(0deg) + + & > .post + box-shadow: none + border: 1px solid rgba(brush.adjust(c.$state, $red: 50), 0.5) + transition: box-shadow 3s + + & > p + color: c.$fg + font-family: postContent + font-size: clamp(11pt,1.2vw, 16pt) + margin: 2% 0 + + &::after + content: " [ . . . ]" + color: c.$accent + + & > h2 + // color: c.$state + font-size: clamp(14pt, 2.5vw, 20pt) + font-weight: 900 + margin: 0 + + &:hover + box-shadow: inset 0 2px 16px brush.adjust(c.$state, $red: 95) + + &:nth-child(even) + transform: rotate(3deg) + transition: transform 2s + + &:nth-child(odd) + transform: rotate(-3deg) + transition: transform 2s + + &:hover + transform: rotate(0deg) + +.post + background-image: linear-gradient(to top right, rgba(c.$bg, 1.0), rgba(brush.adjust(c.$bg, $lightness: 22%), 0.1)) + // border: 1px solid c.$accent + font-family: postTitle + padding: 3% + margin: 2% 0 + border-radius: 4% + +#post + font-family: postTitle + + & #content + margin: 0 10% + font-family: postContent + font-size: clamp(12pt, 1.1vw, 16pt) + + & img + filter: saturate(0) contrast(1.75) + + & > img, & > p > img + margin: 2% auto + max-width: 50% + height: auto + display: block + border-top: 12px + border-right: 12px + border-left: 12px + border-bottom: 48px + border-color: #fff + border-style: solid + border-radius: 1% + + & > img:nth-child(even), & > p > img:nth-child(even) + transform: rotate(2deg) + + & > img:nth-child(odd), & > p > img:nth-child(odd) + transform: rotate(-2deg) + + & > p:first-child::first-letter + font-family: postFirstChar + font-size: clamp(64pt, 3vw , 86pt) + float: left + color: c.$state + + & figure + display: flex + flex-flow: column nowrap + margin: 2% auto + max-width: 50% + height: auto + border-top: 12px + border-right: 12px + border-left: 12px + border-bottom: 24px + border-color: #fff + border-style: solid + border-radius: 1% + background-color: #fff + text-align: center + + & img + width: 100% + + & figcaption + max-height: 10vh + + & > p + margin-top: 0 + margin-bottom: 0 + color: c.$bg + font-family: postMatter + font-size: clamp(9pt, 1.5vw, 14pt) + text-align: justify + + & .footnotes + font-size: clamp(9pt, 1vw, 12pt) + max-height: 33vh + overflow-y: scroll + background: no-repeat url("images/snek.svg") 33% center c.$fg + border-bottom-left-radius: 5% + border-bottom-right-radius: 5% + margin-top: 10% + + & ol + padding-left: 5% + + & li + padding: 0 5% + margin: 5% 5% 5% 0 + border-radius: 3% + background-color: c.$state + color: c.$bg + text-shadow: 0 0 4px c.$bg + opacity: 85% + + &::marker + color: c.$accent + + & h1, & h2, & h3, & h4, & h6 + color: c.$state + + & h1:first-child + text-align: center + font-size: clamp(24pt, 2vw, 72pt) + color: c.$accent + font-weight: bold + + & #frontmatter + width: 33% + margin: 0 0 0 auto + padding: 1% + font-family: postMatter + + & .terms + max-width: 66% + margin: 25px auto 0 + text-align: center + + &#label + text-decoration: underline + + &#directory + font-family: postMatter + padding: 2% 0 4% + + & li + display: inline-block + margin: 0.5% + font-weight: bold + + & a + display: block + padding: 5px + background-color: c.$accent + color: c.$bg + text-decoration: none + border-radius: 5px + transition: background-color 3s + + &:hover + background-color: c.$state + +.page.category + & > div + display: flex + flex-flow: row nowrap + justify-content: space-evenly + + & > h1 + font-family: catTerm + flex-basis: 33vw + font-size: clamp(16pt, 1.3vw, 24pt) + + & > p + font-family: pageFont + margin-left: 10% + margin-right: 5% + max-height: 15vh + overflow-y: scroll + + & > img + width: 100% + filter: saturate(0) contrast(1.75) + +#categories.expo + & > h1 + font-family: catTerm + font-size: clamp(24pt, 2vw, 32pt) + +#categories.directory + padding-top: 0px + + & > .category + min-height: 66px + background-position-y: 34% + background-size: cover + background-blend-mode: saturation + filter: contrast(1.3) + + & > h2 + text-shadow: 2px 2px 5px c.$bg + font-family: catTerm + + & + p + display: none + + &:hover > h2 + p + display: initial + text-shadow: 2px 2px 5px c.$bg + font-family: pageFont + backdrop-filter: blur(3px) + +.page.tag + & > h1 + font-family: postMatter + font-size: clamp(24pt, 2vw, 32pt) + +#tags.expo + & > h1 + font-family: postMatter + font-size: clamp(24pt, 2vw, 32pt) + +#tags.directory + padding-top: 0px + + & > dl + display: flex + flex-wrap: wrap + justify-content: center + align-items: center + align-content: space-around + gap: 3% + + & .tag.title + font-family: postMatter + font-weight: bold + font-size: clamp(12pt, 1.5vw, 16pt) + // float: left + background-color: c.$accent + cursor: pointer + + & > a + padding: 5px + background-color: c.$accent + color: c.$bg + text-decoration: none + border-radius: 5px + + &:hover + .tag.content::after + // content: "Lorem ipsum" + display: inline-block + position: absolute + z-index: 1 + max-width: 10vw + max-height: 15vh + overflow: scroll + background-color: c.$state + color: c.$bg + + // & .tag.content + // visibility: collapse + +#home + & img + max-width: 100% + margin: 0 auto + +footer + border-top: 1px solid c.$state + margin-top: 1rem + font-family: postMatter + font-size: 14pt + +a + color: c.$accent + text-decoration: none diff --git a/assets/css/components/_cblocks.sass b/assets/css/components/_cblocks.sass new file mode 100644 index 0000000..3f73b3e --- /dev/null +++ b/assets/css/components/_cblocks.sass @@ -0,0 +1,23 @@ +@use '../abstracts/palette' as c +@use 'sass:color' as brush +@forward '../abstracts/fonts' + +pre:has(code) + padding: 15px + border-radius: 3% + // background-image: url('images/parchment.jpg') + +code + font-family: codeFont + font-size: clamp(10pt, 1.5vw, 14pt) + +.jtab + & path + stroke: c.$fg + + & circle + fill: c.$fg + stroke: none + + & + text + fill: c.$bg diff --git a/assets/css/main.css b/assets/css/main.css new file mode 100644 index 0000000..b540fb1 --- /dev/null +++ b/assets/css/main.css @@ -0,0 +1,466 @@ +@font-face { + font-family: "headerTitle"; + src: url("fonts/Cronicle.ttf"); +} +@font-face { + font-family: "postTitle"; + src: url("fonts/Satanic_Demon.ttf"); +} +@font-face { + font-family: "postMatter"; + src: url("fonts/erika-pl.regular.ttf"); +} +@font-face { + font-family: "postContent"; + src: url("fonts/vinque.regular.otf"); +} +@font-face { + font-family: "postFirstChar"; + src: url("fonts/goudy-initialen.regular.ttf"); +} +@font-face { + font-family: "catTerm"; + src: url("fonts/CaesarDressing.regular.ttf"); +} +@font-face { + font-family: "navFont"; + src: url("fonts/black-magnet.regular.otf"); +} +@font-face { + font-family: "pageFont"; + src: url("fonts/Almendra.regular.ttf"); +} +@font-face { + font-family: "encryptedFont"; + src: url("fonts/Drachenklaue.ttf"); +} +@font-face { + font-family: "codeFont"; + src: url("fonts/blockblueprint.medium.ttf"); +} +pre:has(code) { + padding: 15px; + border-radius: 3%; +} + +code { + font-family: codeFont; + font-size: clamp(10pt, 1.5vw, 14pt); +} + +.jtab path { + stroke: #cccccc; +} +.jtab circle { + fill: #cccccc; + stroke: none; +} +.jtab circle + text { + fill: #121212; +} + +::-moz-selection { + background-color: #e9b074; + color: #121212; +} + +::selection { + background-color: #e9b074; + color: #121212; +} + +html { + background-color: rgb(29.475, 26.2875, 21.825); + background-image: url("images/rocky_wall.png"); +} + +header { + border-bottom: 5px solid #e9b074; + margin-bottom: 1rem; +} +header h1 { + font-family: headerTitle; + text-align: center; + font-size: clamp(16pt, 3vw, 72pt); +} +header nav { + text-align: center; + font-family: navFont; + font-size: clamp(16pt, 1.5vw, 24pt); + margin: 6%; +} +header nav > a { + padding: 3%; + margin: 3%; +} + +body { + color: #cccccc; + /* line-height: 1.5 */ + /* margin: 1rem */ + margin: 0 auto; + width: 50vw; + max-width: 900px; +} +body main { + background-color: rgba(18, 18, 18, 0.7); + border-radius: 2%; +} + +.directory { + padding: 3% 5%; +} + +@keyframes rise-and-shine { + 0% { + top: 0vh; + } + 100% { + top: -15vh; + } +} +@keyframes morningside { + 0% { + background: radial-gradient(circle at 15vw, #121212 60%, #9d1934); + } + 100% { + background: radial-gradient(circle at 7.5vw, #121212 66%, #9d1934); + } +} +.black-hole.wrap { + z-index: -1; + position: absolute; + top: -15vh; + text-align: center; + filter: drop-shadow(-5px 4px 20px rgba(157, 25, 52, 0.5)); + animation: rise-and-shine 5s ease-out; +} +.black-hole.wrap #black-hole { + width: 50vw; + max-width: 900px; + height: 50vw; + max-height: 900px; + margin: 0 auto; + shape-outside: circle(50%); + clip-path: circle(45vw); + background-color: #121212; + border-radius: 50%; + background: radial-gradient(circle at 7.5vw, #121212 66%, #9d1934); + animation: morningside 5s ease-in; + transform: rotate(-90deg); +} + +#page #title { + font-family: postTitle; + margin-left: 1.5vw; +} + +#content.page { + font-family: pageFont; + font-size: clamp(10pt, 1.5vw, 18pt); + margin: 5% 15% 0; + padding: 5% 0 5%; +} + +.expo > #title { + padding-top: 0px; +} + +#posts { + padding: 3% 10%; +} +#posts > a:has(.post) { + display: block; + transform: rotate(0deg); +} +#posts > a:has(.post) > .post { + box-shadow: none; + border: 1px solid rgba(255, 176, 116, 0.5); + transition: box-shadow 3s; +} +#posts > a:has(.post) > .post > p { + color: #cccccc; + font-family: postContent; + font-size: clamp(11pt, 1.2vw, 16pt); + margin: 2% 0; +} +#posts > a:has(.post) > .post > p::after { + content: " [ . . . ]"; + color: #9d1934; +} +#posts > a:has(.post) > .post > h2 { + font-size: clamp(14pt, 2.5vw, 20pt); + font-weight: 900; + margin: 0; +} +#posts > a:has(.post) > .post:hover { + box-shadow: inset 0 2px 16px #ffb074; +} +#posts > a:has(.post):nth-child(even) { + transform: rotate(3deg); + transition: transform 2s; +} +#posts > a:has(.post):nth-child(odd) { + transform: rotate(-3deg); + transition: transform 2s; +} +#posts > a:has(.post):hover { + transform: rotate(0deg); +} + +.post { + background-image: linear-gradient(to top right, #121212, rgba(74.1, 74.1, 74.1, 0.1)); + font-family: postTitle; + padding: 3%; + margin: 2% 0; + border-radius: 4%; +} + +#post { + font-family: postTitle; +} +#post #content { + margin: 0 10%; + font-family: postContent; + font-size: clamp(12pt, 1.1vw, 16pt); +} +#post #content img { + filter: saturate(0) contrast(1.75); +} +#post #content > img, #post #content > p > img { + margin: 2% auto; + max-width: 50%; + height: auto; + display: block; + border-top: 12px; + border-right: 12px; + border-left: 12px; + border-bottom: 48px; + border-color: #fff; + border-style: solid; + border-radius: 1%; +} +#post #content > img:nth-child(even), #post #content > p > img:nth-child(even) { + transform: rotate(2deg); +} +#post #content > img:nth-child(odd), #post #content > p > img:nth-child(odd) { + transform: rotate(-2deg); +} +#post #content > p:first-child::first-letter { + font-family: postFirstChar; + font-size: clamp(64pt, 3vw, 86pt); + float: left; + color: #e9b074; +} +#post #content figure { + display: flex; + flex-flow: column nowrap; + margin: 2% auto; + max-width: 50%; + height: auto; + border-top: 12px; + border-right: 12px; + border-left: 12px; + border-bottom: 24px; + border-color: #fff; + border-style: solid; + border-radius: 1%; + background-color: #fff; + text-align: center; +} +#post #content figure img { + width: 100%; +} +#post #content figure figcaption { + max-height: 10vh; +} +#post #content figure figcaption > p { + margin-top: 0; + margin-bottom: 0; + color: #121212; + font-family: postMatter; + font-size: clamp(9pt, 1.5vw, 14pt); + text-align: justify; +} +#post #content .footnotes { + font-size: clamp(9pt, 1vw, 12pt); + max-height: 33vh; + overflow-y: scroll; + background: no-repeat url("images/snek.svg") 33% center #cccccc; + border-bottom-left-radius: 5%; + border-bottom-right-radius: 5%; + margin-top: 10%; +} +#post #content .footnotes ol { + padding-left: 5%; +} +#post #content .footnotes li { + padding: 0 5%; + margin: 5% 5% 5% 0; + border-radius: 3%; + background-color: #e9b074; + color: #121212; + text-shadow: 0 0 4px #121212; + opacity: 85%; +} +#post #content .footnotes li::marker { + color: #9d1934; +} +#post #content h1, #post #content h2, #post #content h3, #post #content h4, #post #content h6 { + color: #e9b074; +} +#post h1:first-child { + text-align: center; + font-size: clamp(24pt, 2vw, 72pt); + color: #9d1934; + font-weight: bold; +} +#post #frontmatter { + width: 33%; + margin: 0 0 0 auto; + padding: 1%; + font-family: postMatter; +} +#post .terms { + max-width: 66%; + margin: 25px auto 0; + text-align: center; +} +#post .terms#label { + text-decoration: underline; +} +#post .terms#directory { + font-family: postMatter; + padding: 2% 0 4%; +} +#post .terms li { + display: inline-block; + margin: 0.5%; + font-weight: bold; +} +#post .terms li a { + display: block; + padding: 5px; + background-color: #9d1934; + color: #121212; + text-decoration: none; + border-radius: 5px; + transition: background-color 3s; +} +#post .terms li a:hover { + background-color: #e9b074; +} + +.page.category > div { + display: flex; + flex-flow: row nowrap; + justify-content: space-evenly; +} +.page.category > div > h1 { + font-family: catTerm; + flex-basis: 33vw; + font-size: clamp(16pt, 1.3vw, 24pt); +} +.page.category > div > p { + font-family: pageFont; + margin-left: 10%; + margin-right: 5%; + max-height: 15vh; + overflow-y: scroll; +} +.page.category > img { + width: 100%; + filter: saturate(0) contrast(1.75); +} + +#categories.expo > h1 { + font-family: catTerm; + font-size: clamp(24pt, 2vw, 32pt); +} + +#categories.directory { + padding-top: 0px; +} +#categories.directory > .category { + min-height: 66px; + background-position-y: 34%; + background-size: cover; + background-blend-mode: saturation; + filter: contrast(1.3); +} +#categories.directory > .category > h2 { + text-shadow: 2px 2px 5px #121212; + font-family: catTerm; +} +#categories.directory > .category > h2 + p { + display: none; +} +#categories.directory > .category:hover > h2 + p { + display: initial; + text-shadow: 2px 2px 5px #121212; + font-family: pageFont; + backdrop-filter: blur(3px); +} + +.page.tag > h1 { + font-family: postMatter; + font-size: clamp(24pt, 2vw, 32pt); +} + +#tags.expo > h1 { + font-family: postMatter; + font-size: clamp(24pt, 2vw, 32pt); +} + +#tags.directory { + padding-top: 0px; +} +#tags.directory > dl { + display: flex; + flex-wrap: wrap; + justify-content: center; + align-items: center; + align-content: space-around; + gap: 3%; +} +#tags.directory .tag.title { + font-family: postMatter; + font-weight: bold; + font-size: clamp(12pt, 1.5vw, 16pt); + background-color: #9d1934; + cursor: pointer; +} +#tags.directory .tag.title > a { + padding: 5px; + background-color: #9d1934; + color: #121212; + text-decoration: none; + border-radius: 5px; +} +#tags.directory .tag.title:hover + .tag.content::after { + display: inline-block; + position: absolute; + z-index: 1; + max-width: 10vw; + max-height: 15vh; + overflow: scroll; + background-color: #e9b074; + color: #121212; +} + +#home img { + max-width: 100%; + margin: 0 auto; +} + +footer { + border-top: 1px solid #e9b074; + margin-top: 1rem; + font-family: postMatter; + font-size: 14pt; +} + +a { + color: #9d1934; + text-decoration: none; +}/*# sourceMappingURL=main.css.map */ \ No newline at end of file diff --git a/assets/css/main.sass b/assets/css/main.sass new file mode 100644 index 0000000..5490e55 --- /dev/null +++ b/assets/css/main.sass @@ -0,0 +1 @@ +@forward './base/site' \ No newline at end of file diff --git a/assets/js/main.js b/assets/js/main.js new file mode 100644 index 0000000..e2aac52 --- /dev/null +++ b/assets/js/main.js @@ -0,0 +1 @@ +console.log('This site was generated by Hugo.'); diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..7d47e5b --- /dev/null +++ b/content/_index.md @@ -0,0 +1,9 @@ ++++ +title = 'Home' +kind = 'home' +draft = true ++++ + +Laborum voluptate pariatur ex culpa magna nostrud est incididunt fugiat +pariatur do dolor ipsum enim. Consequat tempor do dolor eu. Non id id anim anim +excepteur excepteur pariatur nostrud qui irure ullamco. diff --git a/content/categories/critical theory/_index.md b/content/categories/critical theory/_index.md new file mode 100644 index 0000000..5061341 --- /dev/null +++ b/content/categories/critical theory/_index.md @@ -0,0 +1,6 @@ ++++ +title = "critical theory" +summary = "The systematic critical analysis of systemic power relations in society, especially in their influence on or underpinning in normative communication, social knowledge production, and popular or conventionl concepts of values like \"truth\", with the normative aim of challenging or undermining those systemic power relations" +draft = false # @TODO creaste shortcode that toggles draft bool for each and every category +image = "/images/critical theory" ++++ diff --git a/content/categories/cultural studies/_index.md b/content/categories/cultural studies/_index.md new file mode 100644 index 0000000..2413f74 --- /dev/null +++ b/content/categories/cultural studies/_index.md @@ -0,0 +1,6 @@ ++++ +title = "cultural studies" +summary = "The systematic study or examination of the dynamics of contemporary culture--that is, a systematic study and examination of the process and conditions of cultural change as well as the role of culture in processes of social, political or economic change more broadly" +draft = false # @TODO creaste shortcode that toggles draft bool for each and every category +image = "/images/cultural studies" ++++ diff --git a/content/categories/ethnic studies/_index.md b/content/categories/ethnic studies/_index.md new file mode 100644 index 0000000..c7fee4b --- /dev/null +++ b/content/categories/ethnic studies/_index.md @@ -0,0 +1,6 @@ ++++ +title = "ethnic studies" +summary = "The systematic study of the production of difference, especially difference in terms of *marking* or culture, through the exercise of power, and the influence of difference, especially difference in terms of *marking* or culture, on the opportunities for and constrants on power" +draft = false # @TODO creaste shortcode that toggles draft bool for each and every category +image = "/images/ethnic studies" ++++ diff --git a/content/categories/feminist theory/_index.md b/content/categories/feminist theory/_index.md new file mode 100644 index 0000000..a4ff855 --- /dev/null +++ b/content/categories/feminist theory/_index.md @@ -0,0 +1,6 @@ ++++ +title = "Feminist Theory" +summary = "The systematic study of the phenomena and nature of gender inequality and the role of power in the production of gender difference, as well as examining those consequent differences and their impact in various social fields or domains" +draft = false # @TODO creaste shortcode that toggles draft bool for each and every category +image = "/images/feminist theory" ++++ diff --git a/content/categories/gender studies/_index.md b/content/categories/gender studies/_index.md new file mode 100644 index 0000000..244589a --- /dev/null +++ b/content/categories/gender studies/_index.md @@ -0,0 +1,6 @@ ++++ +title = "Gender Studies" +summary = "The systematic study of the phenomenon of gender identity, the ascription or perception of gender in bodies, behaviors or activities, and the social construction as well as performance of gender" +draft = false # @TODO creaste shortcode that toggles draft bool for each and every category +image = "/images/gender studies" ++++ diff --git a/content/categories/images/anthropology b/content/categories/images/anthropology new file mode 100644 index 0000000..af66084 Binary files /dev/null and b/content/categories/images/anthropology differ diff --git a/content/categories/images/art b/content/categories/images/art new file mode 100644 index 0000000..5be8386 Binary files /dev/null and b/content/categories/images/art differ diff --git a/content/categories/images/biology b/content/categories/images/biology new file mode 100644 index 0000000..665108d Binary files /dev/null and b/content/categories/images/biology differ diff --git a/content/categories/images/chemistry b/content/categories/images/chemistry new file mode 100644 index 0000000..6875a1b Binary files /dev/null and b/content/categories/images/chemistry differ diff --git a/content/categories/images/computer science b/content/categories/images/computer science new file mode 100644 index 0000000..43aef99 Binary files /dev/null and b/content/categories/images/computer science differ diff --git a/content/categories/images/cosmology b/content/categories/images/cosmology new file mode 100644 index 0000000..063a813 Binary files /dev/null and b/content/categories/images/cosmology differ diff --git a/content/categories/images/critical theory b/content/categories/images/critical theory new file mode 100644 index 0000000..536cc39 Binary files /dev/null and b/content/categories/images/critical theory differ diff --git a/content/categories/images/cultural studies b/content/categories/images/cultural studies new file mode 100644 index 0000000..29212a9 Binary files /dev/null and b/content/categories/images/cultural studies differ diff --git a/content/categories/images/economics b/content/categories/images/economics new file mode 100644 index 0000000..72f674f Binary files /dev/null and b/content/categories/images/economics differ diff --git a/content/categories/images/ethnic studies b/content/categories/images/ethnic studies new file mode 100644 index 0000000..1d0ae0a Binary files /dev/null and b/content/categories/images/ethnic studies differ diff --git a/content/categories/images/feminist theory b/content/categories/images/feminist theory new file mode 100644 index 0000000..1b3f125 Binary files /dev/null and b/content/categories/images/feminist theory differ diff --git a/content/categories/images/gender studies b/content/categories/images/gender studies new file mode 100644 index 0000000..b48f9f5 Binary files /dev/null and b/content/categories/images/gender studies differ diff --git a/content/categories/images/history b/content/categories/images/history new file mode 100644 index 0000000..851a947 Binary files /dev/null and b/content/categories/images/history differ diff --git a/content/categories/images/legal studies b/content/categories/images/legal studies new file mode 100644 index 0000000..6e6936d Binary files /dev/null and b/content/categories/images/legal studies differ diff --git a/content/categories/images/literature b/content/categories/images/literature new file mode 100644 index 0000000..193526d Binary files /dev/null and b/content/categories/images/literature differ diff --git a/content/categories/images/logic b/content/categories/images/logic new file mode 100644 index 0000000..1586679 Binary files /dev/null and b/content/categories/images/logic differ diff --git a/content/categories/images/mathematics b/content/categories/images/mathematics new file mode 100644 index 0000000..9bbabfd Binary files /dev/null and b/content/categories/images/mathematics differ diff --git a/content/categories/images/philosophy b/content/categories/images/philosophy new file mode 100644 index 0000000..af7aeb0 Binary files /dev/null and b/content/categories/images/philosophy differ diff --git a/content/categories/images/physics b/content/categories/images/physics new file mode 100644 index 0000000..038dba5 Binary files /dev/null and b/content/categories/images/physics differ diff --git a/content/categories/images/political science b/content/categories/images/political science new file mode 100644 index 0000000..e356672 Binary files /dev/null and b/content/categories/images/political science differ diff --git a/content/categories/images/psychoanalysis b/content/categories/images/psychoanalysis new file mode 100644 index 0000000..e9e70e7 Binary files /dev/null and b/content/categories/images/psychoanalysis differ diff --git a/content/categories/images/psychology b/content/categories/images/psychology new file mode 100644 index 0000000..c366dfb Binary files /dev/null and b/content/categories/images/psychology differ diff --git a/content/categories/images/queer theory b/content/categories/images/queer theory new file mode 100644 index 0000000..a2edfc4 Binary files /dev/null and b/content/categories/images/queer theory differ diff --git a/content/categories/images/religious studies b/content/categories/images/religious studies new file mode 100644 index 0000000..ccaaee1 Binary files /dev/null and b/content/categories/images/religious studies differ diff --git a/content/categories/images/sexuality studies b/content/categories/images/sexuality studies new file mode 100644 index 0000000..0c72981 Binary files /dev/null and b/content/categories/images/sexuality studies differ diff --git a/content/categories/images/sociology b/content/categories/images/sociology new file mode 100644 index 0000000..dace843 Binary files /dev/null and b/content/categories/images/sociology differ diff --git a/content/categories/images/statistics b/content/categories/images/statistics new file mode 100644 index 0000000..6120605 Binary files /dev/null and b/content/categories/images/statistics differ diff --git a/content/categories/philosophy/_index.md b/content/categories/philosophy/_index.md new file mode 100644 index 0000000..1663410 --- /dev/null +++ b/content/categories/philosophy/_index.md @@ -0,0 +1,6 @@ ++++ +title = "Philosophy" +summary = "The systematic normative study of the relationships among concepts, typically for purposes of sharpening discrimination of worldviews and developing perceptual or normative discernment" +draft = false # @TODO creaste shortcode that toggles draft bool for each and every category +image = "/images/philosophy" ++++ diff --git a/content/categories/psychoanalysis/_index.md b/content/categories/psychoanalysis/_index.md new file mode 100644 index 0000000..574cbc0 --- /dev/null +++ b/content/categories/psychoanalysis/_index.md @@ -0,0 +1,6 @@ ++++ +title = "Psychoanalysis" +summary = "The development or application of a set of theories or techniques whereby meanings or implications that occur independent of the subject's/self's/agent's awareness/intention when self-expressing are interpreted or extracted, with the aim of disrupting, destabilizing or challenging the established self- or life narrative of that subject/self/agent and its role in their system of behavior" +draft = false # @TODO creaste shortcode that toggles draft bool for each and every category +image = "/images/psychoanalysis" ++++ diff --git a/content/categories/psychology/_index.md b/content/categories/psychology/_index.md new file mode 100644 index 0000000..e440c90 --- /dev/null +++ b/content/categories/psychology/_index.md @@ -0,0 +1,6 @@ ++++ +title = "Psychology" +summary = "The plausible positing and repeated empirical corroboration of hypotheses explaining collections of mental and behavioral facts, the mathematical modeling of relationships among mental or behavioral factors, and the statistical analysis of observed patterns of mental activity or behavior" +draft = false # @TODO creaste shortcode that toggles draft bool for each and every category +image = "/images/psychology" ++++ diff --git a/content/categories/queer theory/_index.md b/content/categories/queer theory/_index.md new file mode 100644 index 0000000..88267d5 --- /dev/null +++ b/content/categories/queer theory/_index.md @@ -0,0 +1,6 @@ ++++ +title = "Queer Theory" +summary = "The systematic study and theorization of those gender or gender-related phenomena as well as sexual practices which challenge heteronormativity or destabilize heterosexuality as a fixed and wholly exclusive or \"untainted\" category" +draft = false # @TODO creaste shortcode that toggles draft bool for each and every category +image = "/images/queer theory" ++++ diff --git a/content/categories/sexuality studies/_index.md b/content/categories/sexuality studies/_index.md new file mode 100644 index 0000000..8db40ac --- /dev/null +++ b/content/categories/sexuality studies/_index.md @@ -0,0 +1,6 @@ ++++ +title = "Sexuality Studies" +summary = "The systematic study of the concept of sexuality and the phenomenon of sexual identity, the ascription or perception of sexuality or sexual categories for activities or behaviors, and the social construction of sexuality or sexiness, as well as the performance of sex or 'sexiness'" +draft = false # @TODO creaste shortcode that toggles draft bool for each and every category +image = "/images/sexuality studies" ++++ diff --git a/content/categories/sociology/_index.md b/content/categories/sociology/_index.md new file mode 100644 index 0000000..768d957 --- /dev/null +++ b/content/categories/sociology/_index.md @@ -0,0 +1,6 @@ ++++ +title = "Sociology" +summary = "The plausible positing and repeated empirical corroboration of hypotheses explaining collections of facts regarding persistent interaction among agents or the behavior of agents that share an infrastructure they are embedded in; the mathematical modeling of relationships among factors involved in such persistent interaction, shared infrastructure or coordinated action among agents; and the statistical analysis of observed patterns within interactions between agents, in the impacts of shared infrastructure upon agents, and the outcomes of strategies or tactics of coordination among agents." +draft = false # @TODO creaste shortcode that toggles draft bool for each and every category +image = "/images/sociology" ++++ diff --git a/content/posts/post-1/index.md b/content/posts/post-1/index.md new file mode 100644 index 0000000..e8fbce6 --- /dev/null +++ b/content/posts/post-1/index.md @@ -0,0 +1,38 @@ ++++ +title = 'Post 1' +date = 2025-01-15T09:00:00-07:00 +draft = true +tags = ['red'] +type = 'post' +categories = ['philosophy'] +author = 'admin' +style = 'prose' +editor = 'admin' +hidden = false ++++ + +Tempor proident minim aliquip reprehenderit dolor et ad anim Lorem duis sint eiusmod. Labore ut ea duis dolor. Incididunt consectetur proident qui occaecat incididunt do nisi Lorem. Tempor do laborum elit laboris excepteur eiusmod do. Eiusmod nisi excepteur ut amet pariatur adipisicing Lorem. + +```mermaid {class="mermaid"} +sequenceDiagram + participant Alice + participant Bob + Alice->>John: Hello John, how are you? + loop Healthcheck + John->>John: Fight against hypochondria + end + Note right of John: Rational thoughts
prevail! + John-->>Alice: Great! + John->>Bob: How about you? + Bob-->>John: Jolly good! +``` + +Occaecat nulla excepteur dolore excepteur duis eiusmod ullamco officia anim in voluptate ea occaecat officia. Cillum sint esse velit ea officia minim fugiat. Elit ea esse id aliquip pariatur cupidatat id duis minim incididunt ea ea. + +```goat +.---. .-. .-. .-. .---. +| A +--->| 1 |<--->| 2 |<--->| 3 |<---+ B | +'---' '-' '+' '+' '---' +``` + +Anim ut duis sunt nisi. Culpa cillum sit voluptate voluptate eiusmod dolor. Enim nisi Lorem ipsum irure est excepteur voluptate eu in enim nisi. Nostrud ipsum Lorem anim sint labore consequat do. diff --git a/content/posts/post-2/index.md b/content/posts/post-2/index.md new file mode 100644 index 0000000..085b514 --- /dev/null +++ b/content/posts/post-2/index.md @@ -0,0 +1,31 @@ ++++ +title = 'Post 2' +date = 2025-02-15T10:00:00-07:00 +draft = true +tags = ['red'] +type = 'post' +categories = ['philosophy'] +author = 'admin' ++++ + +Anim eiusmod irure incididunt sint cupidatat. Incididunt irure irure irure nisi ipsum do ut quis fugiat consectetur proident cupidatat incididunt cillum. Dolore voluptate occaecat qui mollit laborum ullamco et. Ipsum laboris officia anim laboris culpa eiusmod ex magna ex cupidatat anim ipsum aute. Mollit aliquip occaecat qui sunt velit ut cupidatat reprehenderit enim sunt laborum. Velit veniam in officia nulla adipisicing ut duis officia. + +$$ E = mc^2 $$ + +Exercitation voluptate irure in irure tempor mollit Lorem nostrud ad officia. Velit id fugiat occaecat do tempor. Sit officia Lorem aliquip eu deserunt consectetur. + +```mermaid +timeline + title History of Social Media Platform + 2002 : LinkedIn + 2004 : Facebook + : Google + 2005 : Youtube + 2006 : Twitter +``` + +Aute proident deserunt in nulla aliquip dolore ipsum Lorem ut cupidatat consectetur sit sint laborum. Esse cupidatat sit sint sunt tempor exercitation deserunt. Labore dolor duis laborum est do nisi ut veniam dolor et nostrud nostrud. + +```javascript +document.getElementById("test") +``` diff --git a/content/posts/post-3/bryce-canyon.jpg b/content/posts/post-3/bryce-canyon.jpg new file mode 100644 index 0000000..9a923be Binary files /dev/null and b/content/posts/post-3/bryce-canyon.jpg differ diff --git a/content/posts/post-3/index.md b/content/posts/post-3/index.md new file mode 100644 index 0000000..8336578 --- /dev/null +++ b/content/posts/post-3/index.md @@ -0,0 +1,39 @@ ++++ +title = 'Post 3' +date = 2025-03-15T11:00:00-07:00 +draft = true +tags = ['red','green','blue'] +type = 'post' +categories = ['philosophy'] +author = 'admin' ++++ + + + +Occaecat **aliqua consequat** laborum ut ex aute *aliqua* culpa quis irure esse magna dolore quis. Proident fugiat labore eu laboris officia Lorem enim. Ipsum occaecat cillum ut tempor id sint aliqua incididunt nisi incididunt reprehenderit. + +```abc {instrument="guitar"} +X:1 +T:Grace notes +M:6/8 +K:C +{g}A3 A{g}AA|{gAGAG}A3 {g}A{d}A{e}A|] +``` + +```tab +%7/2.X/X.7/3.7/4.6/1.X/X[Bm7b5] +``` + +Voluptate ad minim sint est aute aliquip esse occaecat tempor officia qui sunt. Aute ex ipsum id ut in est velit est laborum incididunt. Aliqua qui id do esse sunt eiusmod id deserunt eu nostrud aute sit ipsum. Deserunt esse cillum Lorem non magna adipisicing mollit amet consequat. + +![Bryce Canyon National Park](bryce-canyon.jpg) + +Sit excepteur do velit veniam mollit in nostrud laboris incididunt ea. Amet eu cillum ut reprehenderit culpa aliquip labore laborum amet sit sit duis. Laborum id proident nostrud dolore laborum reprehenderit quis mollit nulla amet veniam officia id id. Aliquip in deserunt qui magna duis qui pariatur officia sunt deserunt. + +{{< figure + src="bryce-canyon.jpg" + alt="A photograph of Zion National Park" + link="https://www.nps.gov/zion/index.htm" + caption="Zion National Park" + class="ma0 w-75" +>}} diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..8c708c5 --- /dev/null +++ b/hugo.toml @@ -0,0 +1,56 @@ +# baseURL = 'https://example.org/' +languageCode = 'en-US' +# title = 'My New Hugo Site' +contentDir = "content" + +[markup] + [markup.highlight] + style = 'average' + lineNos = true + + [markup.goldmark] + [markup.goldmark.extensions] + [markup.goldmark.extensions.passthrough] + enable = true + [markup.goldmark.extensions.passthrough.delimiters] + block = [['\[', '\]'], ['$$', '$$']] + inline = [['\(', '\)']] + +[pagination] +disableAliases = false +pagerSize = 10 +path = 'page' + +[[menus.main]] +name = 'Home' +pageRef = '/' +weight = 10 + +[[menus.main]] +name = 'Posts' +pageRef = '/posts' +weight = 20 + +[[menus.main]] +name = 'Tags' +pageRef = '/tags' +weight = 30 + +[[menus.main]] +name = 'Categories' +pageRef = '/categories' +weight = 30 + +[taxonomies] +category = "categories" +# @TODO work on building below taxonomies +editor = "editors" +# style = "styles" + +[module] + [module.hugoVersion] + extended = false + min = "0.116.0" + +[params] +math = true \ No newline at end of file diff --git a/layouts/_default/_markup/render-codeblock-abc.html b/layouts/_default/_markup/render-codeblock-abc.html new file mode 100644 index 0000000..470186f --- /dev/null +++ b/layouts/_default/_markup/render-codeblock-abc.html @@ -0,0 +1,4 @@ +
+    {{ .Inner | htmlEscape | safeHTML }}
+
+{{ .Page.Store.Set "hasAbc" true }} \ No newline at end of file diff --git a/layouts/_default/_markup/render-codeblock-mermaid.html b/layouts/_default/_markup/render-codeblock-mermaid.html new file mode 100644 index 0000000..395dc0f --- /dev/null +++ b/layouts/_default/_markup/render-codeblock-mermaid.html @@ -0,0 +1,4 @@ +
+    {{ .Inner | htmlEscape | safeHTML }}
+
+{{ .Page.Store.Set "hasMermaid" true }} \ No newline at end of file diff --git a/layouts/_default/_markup/render-codeblock-tab.html b/layouts/_default/_markup/render-codeblock-tab.html new file mode 100644 index 0000000..d675969 --- /dev/null +++ b/layouts/_default/_markup/render-codeblock-tab.html @@ -0,0 +1,4 @@ +
+    {{ .Inner | htmlEscape | safeHTML }}
+
+{{ .Page.Store.Set "hasTab" true }} \ No newline at end of file diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html new file mode 100644 index 0000000..a92fd34 --- /dev/null +++ b/layouts/_default/baseof.html @@ -0,0 +1,36 @@ + + + + {{ partial "head.html" . }} + +{{ partial "audio_autoplay.html" . }} + +
+ {{ partial "header.html" . }} +
+
+
+
+
+
+
+ {{ block "expo" . }}{{ end }} + {{ block "main" . }}{{ end }} +
+ + {{ if .Param "math" }} + {{ partialCached "math.html" . }} + {{ end }} + {{ if .Store.Get "hasMermaid" }} + {{ partialCached "diagram.html" . }} + {{ end }} + {{ if .Store.Get "hasAbc" }} + {{ partialCached "music-notation.html" . }} + {{ end }} + {{ if .Store.Get "hasTab" }} + {{ partialCached "tablature-notation.html" . }} + {{ end }} + + diff --git a/layouts/_default/home.html b/layouts/_default/home.html new file mode 100644 index 0000000..ff269d4 --- /dev/null +++ b/layouts/_default/home.html @@ -0,0 +1,7 @@ +{{ define "main" }} +
+
+ {{ .Content }} +
+
+{{ end }} diff --git a/layouts/_default/list.html b/layouts/_default/list.html new file mode 100644 index 0000000..b4eb5e4 --- /dev/null +++ b/layouts/_default/list.html @@ -0,0 +1,17 @@ +{{ define "main" }} + {{ with .Content }} +
+ {{ . }} +
+ {{ end }} +
+ {{ range .Paginator.Pages }} + +
+

{{ .LinkTitle }}

+

{{ .Summary }}

+
+
+ {{ end }}{{ template "_internal/pagination.html" . }} +
+{{ end }} diff --git a/layouts/_default/single.html b/layouts/_default/single.html new file mode 100644 index 0000000..1e731c2 --- /dev/null +++ b/layouts/_default/single.html @@ -0,0 +1,37 @@ +{{ define "main" }} +
+

{{ .Title }}

+
+ {{ if ne .PublishDate nil }} + {{ $dateMachine := .PublishDate | time.Format "2006-01-02T15:04:05-07:00" }} + {{ $dateHuman := .PublishDate | time.Format "2 Jan 2006" }} + + {{ else }} + {{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }} + {{ $dateHuman := .Date | time.Format "2 Jan 2006" }} + + {{ end }} + {{ with .Params.author }} +

Written by {{ . }}

+ {{ end }} + {{ if ne .Params.editor .Params.author }} +

Edited by {{ .Params.editor }}

+ {{ end }} + {{ with .Params.translator }} +

Translated by {{ . }}

+ {{ end }} +
+
+ {{ .Content }} +
+ + {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }} +
+{{ end }} diff --git a/layouts/categories/list.html b/layouts/categories/list.html new file mode 100644 index 0000000..713e500 --- /dev/null +++ b/layouts/categories/list.html @@ -0,0 +1,31 @@ +{{ define "main" }} +
+
+

{{ .Title }}

+ {{ with .Summary }} +

{{ . }}

+ {{ end }} +
+ {{ if ne .Params.image nil }} + {{ $path := print ".." .Params.image }} + {{ lower .Title }}_image + {{ else }} + @TODO: 404 image goes here + {{ end }} +
+ {{ with .Content }} +
+ {{ . }} +
+ {{ end }} +
+ {{ range .Paginator.Pages }} + +
+

{{ .LinkTitle }}

+

{{ .Summary }}

+
+
+ {{ end }}{{ template "_internal/pagination.html" . }} +
+{{ end }} diff --git a/layouts/categories/terms.html b/layouts/categories/terms.html new file mode 100644 index 0000000..1f99e16 --- /dev/null +++ b/layouts/categories/terms.html @@ -0,0 +1,24 @@ +{{ define "expo" }} +
+

{{ .Title }}

+

{{ .Content }}

+
+{{ end }} +{{ define "main" }} +
+ {{ range .Data.Pages }} + {{ if ne .Params.image nil }} + {{ $path := print "." .Params.image }} +
+ {{ else }} +
+ {{ end }} +

{{ .Title }}

+ + {{ with .Summary }} +

{{ . }}

+ {{ end }} +
+ {{ end }} +
+{{ end }} diff --git a/layouts/partials/audio_autoplay.html b/layouts/partials/audio_autoplay.html new file mode 100644 index 0000000..b97ce8e --- /dev/null +++ b/layouts/partials/audio_autoplay.html @@ -0,0 +1,7 @@ + + \ No newline at end of file diff --git a/layouts/partials/diagram.html b/layouts/partials/diagram.html new file mode 100644 index 0000000..7281087 --- /dev/null +++ b/layouts/partials/diagram.html @@ -0,0 +1,7 @@ + \ No newline at end of file diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html new file mode 100644 index 0000000..a7cd916 --- /dev/null +++ b/layouts/partials/footer.html @@ -0,0 +1 @@ +

Copyright {{ now.Year }}. All rights reserved.

diff --git a/layouts/partials/head.html b/layouts/partials/head.html new file mode 100644 index 0000000..02c2240 --- /dev/null +++ b/layouts/partials/head.html @@ -0,0 +1,5 @@ + + +{{ if .IsHome }}{{ site.Title }}{{ else }}{{ printf "%s | %s" .Title site.Title }}{{ end }} +{{ partialCached "head/css.html" . }} +{{ partialCached "head/js.html" . }} diff --git a/layouts/partials/head/css.html b/layouts/partials/head/css.html new file mode 100644 index 0000000..91b928d --- /dev/null +++ b/layouts/partials/head/css.html @@ -0,0 +1,9 @@ +{{- with resources.Get "css/main.css" }} + {{- if eq hugo.Environment "development" }} + + {{- else }} + {{- with . | minify | fingerprint }} + + {{- end }} + {{- end }} +{{- end }} diff --git a/layouts/partials/head/js.html b/layouts/partials/head/js.html new file mode 100644 index 0000000..18fe842 --- /dev/null +++ b/layouts/partials/head/js.html @@ -0,0 +1,12 @@ +{{- with resources.Get "js/main.js" }} + {{- if eq hugo.Environment "development" }} + {{- with . | js.Build }} + + {{- end }} + {{- else }} + {{- $opts := dict "minify" true }} + {{- with . | js.Build $opts | fingerprint }} + + {{- end }} + {{- end }} +{{- end }} diff --git a/layouts/partials/header.html b/layouts/partials/header.html new file mode 100644 index 0000000..a55a972 --- /dev/null +++ b/layouts/partials/header.html @@ -0,0 +1,2 @@ +

{{ site.Title }}

+{{ partial "menu.html" (dict "menuID" "main" "page" .) }} diff --git a/layouts/partials/math.html b/layouts/partials/math.html new file mode 100644 index 0000000..b5c6fa0 --- /dev/null +++ b/layouts/partials/math.html @@ -0,0 +1,15 @@ + + \ No newline at end of file diff --git a/layouts/partials/menu.html b/layouts/partials/menu.html new file mode 100644 index 0000000..d7a084a --- /dev/null +++ b/layouts/partials/menu.html @@ -0,0 +1,51 @@ +{{- /* +Renders a menu for the given menu ID. + +@context {page} page The current page. +@context {string} menuID The menu ID. + +@example: {{ partial "menu.html" (dict "menuID" "main" "page" .) }} +*/}} + +{{- $page := .page }} +{{- $menuID := .menuID }} + +{{- with index site.Menus $menuID }} + +{{- end }} + +{{- define "partials/inline/menu/walk.html" }} + {{- $page := .page }} + {{- range .menuEntries }} + {{- $attrs := dict "href" .URL }} + {{- if $page.IsMenuCurrent .Menu . }} + {{- $attrs = merge $attrs (dict "class" "active" "aria-current" "page") }} + {{- else if $page.HasMenuCurrent .Menu .}} + {{- $attrs = merge $attrs (dict "class" "ancestor" "aria-current" "true") }} + {{- end }} + {{- $name := .Name }} + {{- with .Identifier }} + {{- with T . }} + {{- $name = . }} + {{- end }} + {{- end }} + + {{ $name }} + {{- with .Children }} + + {{- end }} + + {{- end }} +{{- end }} diff --git a/layouts/partials/music-notation.html b/layouts/partials/music-notation.html new file mode 100644 index 0000000..3eb07b1 --- /dev/null +++ b/layouts/partials/music-notation.html @@ -0,0 +1,10 @@ + + \ No newline at end of file diff --git a/layouts/partials/tablature-notation.html b/layouts/partials/tablature-notation.html new file mode 100644 index 0000000..4c93fec --- /dev/null +++ b/layouts/partials/tablature-notation.html @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/layouts/partials/terms.html b/layouts/partials/terms.html new file mode 100644 index 0000000..98609e9 --- /dev/null +++ b/layouts/partials/terms.html @@ -0,0 +1,23 @@ +{{- /* +For a given taxonomy, renders a list of terms assigned to the page. + +@context {page} page The current page. +@context {string} taxonomy The taxonomy. + +@example: {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }} +*/}} + +{{- $page := .page }} +{{- $taxonomy := .taxonomy }} + +{{- with $page.GetTerms $taxonomy }} + {{- $label := (index . 0).Parent.LinkTitle }} +
+
{{ $label }}:
+ +
+{{- end }} diff --git a/layouts/tags/list.html b/layouts/tags/list.html new file mode 100644 index 0000000..51ad8fc --- /dev/null +++ b/layouts/tags/list.html @@ -0,0 +1,28 @@ +{{ define "main" }} +
+

{{ .Title }}

+ {{ with .Summary }} +

{{ . }}

+ {{ end }} + {{ with .Params.image }} + {{ $path := print ".." .Params.image }} + {{ lower .Title }}_image + {{ end }} + +
+ {{ with .Content }} +
+ {{ . }} +
+ {{ end }} +
+ {{ range .Paginator.Pages }} + +
+

{{ .LinkTitle }}

+

{{ .Summary }}

+
+
+ {{ end }}{{ template "_internal/pagination.html" . }} +
+{{ end }} diff --git a/layouts/tags/terms.html b/layouts/tags/terms.html new file mode 100644 index 0000000..fc62b6f --- /dev/null +++ b/layouts/tags/terms.html @@ -0,0 +1,18 @@ +{{ define "expo" }} +
+

{{ .Title }}

+

{{ .Content }}

+
+{{ end }} +{{ define "main" }} +
+
+ {{ range .Data.Pages }} +
{{ .Title }}
+ {{ with .Summary }} +
{{ . }}
+ {{ end }} + {{ end }} +
+
+{{ end }} diff --git a/static/audio/dark-folktronica.mp3 b/static/audio/dark-folktronica.mp3 new file mode 100644 index 0000000..1a258be Binary files /dev/null and b/static/audio/dark-folktronica.mp3 differ diff --git a/static/css/fonts/Almendra.regular.ttf b/static/css/fonts/Almendra.regular.ttf new file mode 100644 index 0000000..672d6ae Binary files /dev/null and b/static/css/fonts/Almendra.regular.ttf differ diff --git a/static/css/fonts/CaesarDressing.regular.ttf b/static/css/fonts/CaesarDressing.regular.ttf new file mode 100644 index 0000000..87cfa2f Binary files /dev/null and b/static/css/fonts/CaesarDressing.regular.ttf differ diff --git a/static/css/fonts/Cronicle.ttf b/static/css/fonts/Cronicle.ttf new file mode 100644 index 0000000..97d97f1 Binary files /dev/null and b/static/css/fonts/Cronicle.ttf differ diff --git a/static/css/fonts/Drachenklaue.ttf b/static/css/fonts/Drachenklaue.ttf new file mode 100644 index 0000000..2975020 Binary files /dev/null and b/static/css/fonts/Drachenklaue.ttf differ diff --git a/static/css/fonts/Satanic_Demon.ttf b/static/css/fonts/Satanic_Demon.ttf new file mode 100644 index 0000000..972ef86 Binary files /dev/null and b/static/css/fonts/Satanic_Demon.ttf differ diff --git a/static/css/fonts/arta-machine.blackletter.otf b/static/css/fonts/arta-machine.blackletter.otf new file mode 100644 index 0000000..177403f Binary files /dev/null and b/static/css/fonts/arta-machine.blackletter.otf differ diff --git a/static/css/fonts/black-magnet.regular.otf b/static/css/fonts/black-magnet.regular.otf new file mode 100644 index 0000000..f5b16f8 Binary files /dev/null and b/static/css/fonts/black-magnet.regular.otf differ diff --git a/static/css/fonts/blockblueprint.medium.ttf b/static/css/fonts/blockblueprint.medium.ttf new file mode 100644 index 0000000..17afc37 Binary files /dev/null and b/static/css/fonts/blockblueprint.medium.ttf differ diff --git a/static/css/fonts/erika-pl.regular.ttf b/static/css/fonts/erika-pl.regular.ttf new file mode 100644 index 0000000..dd34d45 Binary files /dev/null and b/static/css/fonts/erika-pl.regular.ttf differ diff --git a/static/css/fonts/faustus.regular.ttf b/static/css/fonts/faustus.regular.ttf new file mode 100644 index 0000000..e7f037c Binary files /dev/null and b/static/css/fonts/faustus.regular.ttf differ diff --git a/static/css/fonts/goudy-initialen.regular.ttf b/static/css/fonts/goudy-initialen.regular.ttf new file mode 100644 index 0000000..49f57f3 Binary files /dev/null and b/static/css/fonts/goudy-initialen.regular.ttf differ diff --git a/static/css/fonts/vinque.regular.otf b/static/css/fonts/vinque.regular.otf new file mode 100644 index 0000000..0e99cd7 Binary files /dev/null and b/static/css/fonts/vinque.regular.otf differ diff --git a/static/css/images/crackled_texture.png b/static/css/images/crackled_texture.png new file mode 100644 index 0000000..a01fbd0 Binary files /dev/null and b/static/css/images/crackled_texture.png differ diff --git a/static/css/images/handmade-paper.png b/static/css/images/handmade-paper.png new file mode 100644 index 0000000..6443442 Binary files /dev/null and b/static/css/images/handmade-paper.png differ diff --git a/static/css/images/parchment.jpg b/static/css/images/parchment.jpg new file mode 100644 index 0000000..d9ef7e2 Binary files /dev/null and b/static/css/images/parchment.jpg differ diff --git a/static/css/images/rocky_wall.png b/static/css/images/rocky_wall.png new file mode 100644 index 0000000..2af6fb4 Binary files /dev/null and b/static/css/images/rocky_wall.png differ diff --git a/static/css/images/snek.svg b/static/css/images/snek.svg new file mode 100644 index 0000000..36acdc3 --- /dev/null +++ b/static/css/images/snek.svg @@ -0,0 +1,1955 @@ + + + + +Created by potrace 1.15, written by Peter Selinger 2001-2017 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/favicon.ico b/static/favicon.ico new file mode 100644 index 0000000..67f8b77 Binary files /dev/null and b/static/favicon.ico differ diff --git a/theme.toml b/theme.toml new file mode 100644 index 0000000..3ba3164 --- /dev/null +++ b/theme.toml @@ -0,0 +1,31 @@ +name = 'Theme name' +license = 'MIT' +licenselink = 'https://github.com/owner/repo/LICENSE' +description = 'Theme description' + +# The home page of the theme, where the source can be found +homepage = 'https://github.com/owner/repo' + +# If you have a running demo of the theme +demosite = 'https://owner.github.io/repo' + +# Taxonomy terms +tags = ['blog', 'company'] +features = ['some', 'awesome', 'features'] + +# If the theme has multiple authors +authors = [ + {name = 'Name of author', homepage = 'Website of author'}, + {name = 'Name of author', homepage = 'Website of author'} +] + +# If the theme has a single author +[author] + name = 'Your name' + homepage = 'Your website' + +# If porting an existing theme +[original] + author = 'Name of original author' + homepage = 'Website of original author' + repo = 'https://github.com/owner/repo'