set landing page to all posts view

This commit is contained in:
John Bowdre 2023-08-22 16:27:50 -05:00
parent 5b5e2460fc
commit b59c71d50e
5 changed files with 37 additions and 53 deletions

View file

@ -1,32 +1,4 @@
+++
timeless = "true"
title = "Error 0xdeadbeef"
+++
<h1 style="color: var(--base08)">Error 0xdeadbeef: Quantum Entanglement Overflow Exception</h1>
---
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 %}}

View file

@ -0,0 +1,3 @@
{{ define "main" }}
{{- partial "archive" . }}
{{ end }}

3
layouts/index.html Normal file
View file

@ -0,0 +1,3 @@
{{ define "main" }}
{{- partial "archive" . }}
{{ end }}

View file

@ -0,0 +1,28 @@
{{ $pages := .Pages }}
{{ if .IsHome }}
{{ $pages = where site.RegularPages "Type" "in" site.Params.mainSections }}
{{ end }}
<header class="content__header">
{{ if .IsHome }}
<h1>72 75 6e 74 69 6d 65 74 65 72 72 6f 72 2e 64 65 76 |runtimeterror.dev|</h1>
{{ else }}
<h1>{{ .Title | markdownify }}</h1>
{{ end }}
{{ .Content }}
</header>
{{ range $pages }}
<article class="post">
<header class="post__header">
<h1><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></h1>
<p class="post__meta">
<span class="date">{{ .Date.Format "2 January 2006" }}</span>
</p>
</header>
<section class="post__summary">
{{ .Summary }}
</section>
<br>
</article>
{{ end }}

View file

@ -1,22 +0,0 @@
{{ define "main" }}
<header class="content__header">
<h1>{{ .Title | markdownify }}</h1>
{{ .Content }}
</header>
{{ range .Pages }}
<article class="post">
<header class="post__header">
<h1><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></h1>
<p class="post__meta">
<span class="date">{{ .Date.Format "2 January 2006" }}</span>
</p>
</header>
<section class="post__summary">
{{ .Summary }}
</section>
<br>
</article>
{{ end }}
{{ end }}