diff --git a/layouts/404.html b/layouts/404.html index fe81001..e0f9dc3 100644 --- a/layouts/404.html +++ b/layouts/404.html @@ -1,8 +1,7 @@ {{ define "main" }}
-

Oops!

-

We couldn't find the page you're looking for.

+ HTTP Status Code 404 Not Found & Cats
Take me back!
-{{ end }} \ No newline at end of file +{{ end }} diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 0a819e4..8762e38 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -7,6 +7,5 @@ {{- block "main" . }}{{- end }} {{- partial "footer.html" . -}} - diff --git a/layouts/_default/list.html b/layouts/_default/list.html index 675eeb9..8a1da58 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -13,11 +13,6 @@ {{ else }}

- {{ $regex := `` }} - {{ $matches := findRE $regex .Content 1 }} - {{ range $matches }} - {{ . | safeHTML }} - {{ end }}

{{ .Summary }}

{{ end }} diff --git a/layouts/partials/header.html b/layouts/partials/header.html index afbeb38..0f8524e 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -1,24 +1,10 @@
- -
\ No newline at end of file + + + diff --git a/layouts/partials/metadata.html b/layouts/partials/metadata.html index 8434db1..9cc3a5c 100644 --- a/layouts/partials/metadata.html +++ b/layouts/partials/metadata.html @@ -6,6 +6,6 @@ {{ with .Params.tags }} {{ range . }} {{ $href := print (absURL "tags/") (urlize .) }} -{{ . }} +#{{ . }} +{{ end }} {{ end }} -{{ end }} \ No newline at end of file diff --git a/static/css/style.css b/static/css/style.css index 0caa9f1..7de49f8 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -1,20 +1,19 @@ /* Dark Mode */ @media (prefers-color-scheme: dark) { body { - background-color: #1f2023; - color: #FAFAFA; + background-color: #030319; + color: #C107F9; } a { - text-decoration: none; - color: #FF535D; + color: #C10759; } pre, code { background-color: #3B3C43; color: #E7DBDA; } .author-name { - background-color: #ffffff; - color: #F14B25; + background-color: #C10759; + color: #030319; border-radius: 4px; padding: 5px 10px; font-family: monospace; @@ -28,19 +27,19 @@ /* Light Mode */ @media (prefers-color-scheme: light) { body { - background-color: #FAFAFA; + background-color: #FAFA; + color: #030319; } a { text-decoration: none; - color: #FF535D; + color: #C10000; } pre, code { background-color: #3B3C43; color: #E7DBDA; } .author-name { - background-color: #000000; - border-radius: 4px; + border-radius: 4px; padding: 5px 10px; font-family: monospace; } @@ -96,7 +95,7 @@ footer { } #content { - margin-left: 30%; + margin-left: 10%; margin-right: 10%; } @@ -128,16 +127,35 @@ li:first-child { img { max-width: 75% } - #nav-toggle-mobile { - display: none; - } footer { padding-left: 25%; } #nav-list { - background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url("/images/bgs/nav-bg.png"); - background-size: 100% 100%; - width: 25%; + list-style-type: none; + padding: 0; + margin: 0; + position: relative; + display: flex; + flex-direction: column; + background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url("/images/bgs/nav-bg.png"); + background-size: 100% 100%; + width: 100% + } + .nav-li { + width: 100%; + float: left; + } + .nav-li-show-mobile { + display: flex; + } + .nav-button { + display: block; + } + #nav-toggle-mobile { + align-self: flex-end; + display: flex; + cursor: pointer; + background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url("/images/bgs/nav-bg.png"); } } @@ -176,7 +194,6 @@ li:first-child { .nav-li { width: 100%; float: left; - display: none; } .nav-li-show-mobile { display: flex; @@ -228,6 +245,14 @@ label { font-size: 22px; } +nav-li { + display: inline; +} + +.badge { + text-decoration: none; +} + #cw:checked + label { display: block; }