From 110d351ccf858f85915074f4af734c5cdb59990b Mon Sep 17 00:00:00 2001 From: Daniel Alejandro Gallegos Date: Thu, 22 Jun 2023 21:23:55 -0400 Subject: [PATCH] update with new theme for characters --- content/_index.md | 8 +++++--- content/about.md | 9 ++++++++- content/characters/_index.md | 8 +++----- content/links.md | 2 +- content/music.md | 4 +++- content/writing.md | 4 +++- .../layouts/_default/_markup/render-link.html | 1 + themes/avian/layouts/characters/baseof.html | 16 ++++++++++++++++ themes/avian/layouts/characters/list.html | 13 +++++++++++++ themes/avian/layouts/characters/single.html | 7 +++++++ themes/avian/layouts/home/baseof.html | 1 + themes/avian/layouts/partials/nav.html | 12 ++++++------ 12 files changed, 67 insertions(+), 18 deletions(-) create mode 100644 themes/avian/layouts/_default/_markup/render-link.html create mode 100644 themes/avian/layouts/characters/baseof.html create mode 100644 themes/avian/layouts/characters/list.html create mode 100644 themes/avian/layouts/characters/single.html diff --git a/content/_index.md b/content/_index.md index 529de32..b5855ea 100644 --- a/content/_index.md +++ b/content/_index.md @@ -2,11 +2,12 @@ title: 🚨 hold up 🚨 description: taco's furry trash receptable [🔞] --- +# there's some weird stuff in here. ![artwork by rumwik](/img/aeolus.sippy.rumwik.png) - -## there's some weird stuff in here. -### you should be an adult if you want to read this. +have a bird to soothe you in these trying times. +### this website's content is indended for "mature audiences". +#### that basically means you should be over 18. like, an adult. # are you _sure_ you want to continue? ``` @@ -15,3 +16,4 @@ description: taco's furry trash receptable [🔞] ## [✅ yes, i am an adult](home) | [🔞 no, i am a child](https://www.bluey.tv/) +don't say i didn't warn you! \ No newline at end of file diff --git a/content/about.md b/content/about.md index aca7263..dbc469a 100644 --- a/content/about.md +++ b/content/about.md @@ -4,4 +4,11 @@ description: who is taco? and how much does he weigh? type: home --- -> coming soon! +> hey, fsauce. taco here. but when is here? [and how much does it weigh?](https://www.youtube.com/watch?v=P85Fj8m6v84) + +helscome my wedsite. + +its not done. + +this page is best viewed using Firefox 111.0 or lower. + diff --git a/content/characters/_index.md b/content/characters/_index.md index fbfd973..d6ecc04 100644 --- a/content/characters/_index.md +++ b/content/characters/_index.md @@ -1,11 +1,10 @@ --- title: characters description: all of the creatures inside of taco's head -type: home --- -# characters -{class="text-5xl mb-10"} +# character list +{class="text-5xl mb-5"} |Forename |Surname |Pronouns|Gender presentation|Genetic ancestry |Primary feature|Secondary feature |Hair style |Hair color |Age |Natural Height (cm)|Current Height (cm)|Has A Penis|Has A Vulva|Has Breasts| |---------|---------|--------|-------------------|------------------|---------------|---------------------------------------|---------------------|-----------|---------|-------------------|-------------------|-----------|-----------|-----------| @@ -19,8 +18,7 @@ type: home |Sestra |Hitsu |she/they|Non-binary |Skaga |White wool |Curled ram horns |N/A |N/A |30s |89 |89 |N |Y |Y | |Suneko |Shinzo |he/him |Masculine |Swan |White feathers |Orange beak |N/A |N/A |30s |168 |168 |N |Y |N | |Terra |Viridis |he/him |Masculine |Pegasus |Brown coat |Green extremities (muzzle/hands/hooves)|Feathered short hair |Dark green |40s |178 |178 |Y |N |N | -{class="table-auto"} - +{class="max-w-md mb-10"} # in-depth articles {class="text-5xl mb-10"} diff --git a/content/links.md b/content/links.md index 8cd929b..23593f1 100644 --- a/content/links.md +++ b/content/links.md @@ -4,7 +4,7 @@ description: places where you can find taco! type: home --- -here's where you can find me on the internet! +here's where you can find taco on the internet! ## socials diff --git a/content/music.md b/content/music.md index 1f5c6c1..6c587ce 100644 --- a/content/music.md +++ b/content/music.md @@ -4,4 +4,6 @@ description: music taco has made! type: home --- -> coming soon! +> music taco has made! + +[to be added] diff --git a/content/writing.md b/content/writing.md index d5aaa0e..2db6bcb 100644 --- a/content/writing.md +++ b/content/writing.md @@ -4,4 +4,6 @@ description: all of the words that taco managed to get out of his head type: home --- -> coming soon! \ No newline at end of file +> aka: all of the words that taco managed to get out of his head + +[to be added] \ No newline at end of file diff --git a/themes/avian/layouts/_default/_markup/render-link.html b/themes/avian/layouts/_default/_markup/render-link.html new file mode 100644 index 0000000..868f0e8 --- /dev/null +++ b/themes/avian/layouts/_default/_markup/render-link.html @@ -0,0 +1 @@ +{{ .Text | safeHTML }} \ No newline at end of file diff --git a/themes/avian/layouts/characters/baseof.html b/themes/avian/layouts/characters/baseof.html new file mode 100644 index 0000000..63168ed --- /dev/null +++ b/themes/avian/layouts/characters/baseof.html @@ -0,0 +1,16 @@ + + +{{ partial "head.html" . }} + + + + {{- partial "dev/dev-tools.html" . -}} + {{- partial "header.html" . -}} +
+ {{- partial "nav.html" . -}} + {{- block "main" . }}{{- end }} +
+ {{- partial "footer.html" . -}} + + + \ No newline at end of file diff --git a/themes/avian/layouts/characters/list.html b/themes/avian/layouts/characters/list.html new file mode 100644 index 0000000..e540db6 --- /dev/null +++ b/themes/avian/layouts/characters/list.html @@ -0,0 +1,13 @@ +{{ define "main" }} +
+{{ .Content }} +
+{{ range .Pages }} +
+

{{ .Title }}

+ {{ .Summary }} +
+{{ end }} +{{ end }} \ No newline at end of file diff --git a/themes/avian/layouts/characters/single.html b/themes/avian/layouts/characters/single.html new file mode 100644 index 0000000..c31d5b0 --- /dev/null +++ b/themes/avian/layouts/characters/single.html @@ -0,0 +1,7 @@ +{{ define "main" }} +
+

{{ .Title }}

+ {{ .Content }} +
+{{ end }} \ No newline at end of file diff --git a/themes/avian/layouts/home/baseof.html b/themes/avian/layouts/home/baseof.html index f834862..63168ed 100644 --- a/themes/avian/layouts/home/baseof.html +++ b/themes/avian/layouts/home/baseof.html @@ -3,6 +3,7 @@ {{ partial "head.html" . }} + {{- partial "dev/dev-tools.html" . -}} {{- partial "header.html" . -}}
diff --git a/themes/avian/layouts/partials/nav.html b/themes/avian/layouts/partials/nav.html index 7d2eb78..c39d9dd 100644 --- a/themes/avian/layouts/partials/nav.html +++ b/themes/avian/layouts/partials/nav.html @@ -1,20 +1,20 @@

{{ with .Site.GetPage "/home" }} - {{ .Title }} + {{ .Title }} {{ end }}| {{ with .Site.GetPage "/about" }} - {{ .Title }} + {{ .Title }} {{ end }}| {{ with .Site.GetPage "/characters" }} - {{ .Title }} + {{ .Title }} {{ end }}| {{ with .Site.GetPage "/writing" }} - {{ .Title }} + {{ .Title }} {{ end }}| {{ with .Site.GetPage "/artwork" }} - {{ .Title }} + {{ .Title }} {{ end }}| {{ with .Site.GetPage "/links" }} - {{ .Title }} + {{ .Title }} {{ end }}

\ No newline at end of file