From b59c71d50ecfc277c9a72cac7e403889545b3d50 Mon Sep 17 00:00:00 2001 From: John Bowdre Date: Tue, 22 Aug 2023 16:27:50 -0500 Subject: [PATCH] set landing page to all posts view --- content/_index.md | 34 +++------------------------------- layouts/_default/list.html | 3 +++ layouts/index.html | 3 +++ layouts/partials/archive.html | 28 ++++++++++++++++++++++++++++ layouts/posts/list.html | 22 ---------------------- 5 files changed, 37 insertions(+), 53 deletions(-) create mode 100644 layouts/_default/list.html create mode 100644 layouts/index.html create mode 100644 layouts/partials/archive.html delete mode 100644 layouts/posts/list.html diff --git a/content/_index.md b/content/_index.md index 861afd7..6fa559b 100644 --- a/content/_index.md +++ b/content/_index.md @@ -1,32 +1,4 @@ -+++ -timeless = "true" -title = "Error 0xdeadbeef" -+++ -

Error 0xdeadbeef: Quantum Entanglement Overflow Exception

+--- +title: "" +--- -The quantum realm has spewed forth a turbulent overflow of entangled particles, causing an unprecedented disruption in the fabric of our digital universe. Your innocuous request has inadvertently triggered this calamity, resulting in a cataclysmic violation of the space-time continuum. It seems the very laws of physics are in revolt, and we apologize for the cosmic inconvenience. - -## Possible Causes -1. Unforeseen cosmic interference during data transmission. -2. Intense gravitational fluctuations induced by a black hole nearby. -3. Momentary misalignment of subatomic particles within your device. -4. Temporary rip in the space-time continuum caused by a coffee spill. - -## Recommended Actions -1. Attempt a ritualistic dance to appease the quantum deities and restore balance. -2. Recite the digits of Pi to at least a thousand decimal places while spinning clockwise. -3. Sacrifice a can of Red Bull to the code gods to energize the electrons. -4. Consult a quantum physicist or metaphysical guru to meditate on the enigma. - -## Technical Details -| | | -| ------------- | ------------ | -| Exception Code: | `0xdeadbeef (Cryptic Quantum Overflow Exception)` | -| Entanglement Magnitude: | `√-1 (imaginary)` | -| Ephemeral Quantum Signature: | `∑(θ^2 + ɸ^2)` | -| Quantum Flux Coefficient: | `-1.21 jigawatts` | -| Multiverse Intersection Point: | `(42, π, 867-5309)` | - -{{% notice warning %}} -Please note that attempting to decipher or understand the intricacies of this error message may lead to profound existential contemplation, mild hair loss, or an unquenchable thirst for green tea. We appreciate your patience as we navigate this cosmic anomaly and endeavor to restore order to the chaos within our digital realm. -{{% /notice %}} \ No newline at end of file diff --git a/layouts/_default/list.html b/layouts/_default/list.html new file mode 100644 index 0000000..c1eab4e --- /dev/null +++ b/layouts/_default/list.html @@ -0,0 +1,3 @@ +{{ define "main" }} + {{- partial "archive" . }} +{{ end }} \ No newline at end of file diff --git a/layouts/index.html b/layouts/index.html new file mode 100644 index 0000000..35a8ba8 --- /dev/null +++ b/layouts/index.html @@ -0,0 +1,3 @@ +{{ define "main" }} + {{- partial "archive" . }} +{{ end }} diff --git a/layouts/partials/archive.html b/layouts/partials/archive.html new file mode 100644 index 0000000..46a8ce5 --- /dev/null +++ b/layouts/partials/archive.html @@ -0,0 +1,28 @@ +{{ $pages := .Pages }} +{{ if .IsHome }} + {{ $pages = where site.RegularPages "Type" "in" site.Params.mainSections }} +{{ end }} +
+{{ if .IsHome }} +

72 75 6e 74 69 6d 65 74 65 72 72 6f 72 2e 64 65 76 |runtimeterror.dev|

+{{ else }} +

{{ .Title | markdownify }}

+{{ end }} + {{ .Content }} +
+ +{{ range $pages }} +
+
+

{{ .Title | markdownify }}

+ +
+ +
+ {{ .Summary }} +
+
+
+{{ end }} \ No newline at end of file diff --git a/layouts/posts/list.html b/layouts/posts/list.html deleted file mode 100644 index 696d607..0000000 --- a/layouts/posts/list.html +++ /dev/null @@ -1,22 +0,0 @@ -{{ define "main" }} -
-

{{ .Title | markdownify }}

- {{ .Content }} -
- - {{ range .Pages }} -
-
-

{{ .Title | markdownify }}

- -
- -
- {{ .Summary }} -
-
-
- {{ end }} -{{ end }}