repos
/ orchard main

orchard

mirror

Every site I host, in one repo, along with the Cloudflare Tunnel and Caddy that front them. It's all Go, Vite, and SQLite, and it runs on a desktop at home with nothing listening on an inbound port.

blogbuncaddycloudflare-tunneldockergogolanghomelabhtml-templatemonorepoself-hostedseosqlitestatic-sitetypstuptime-monitoringviteweb-analytics

570 B · 18 lines · HTML Raw History
 1{{ define "breadcrumbs" }}
 2<nav aria-label="breadcrumb">
 3  <ol class="breadcrumb mb-0">
 4    <li class="breadcrumb-item"><a href="/">Home</a></li>
 5    <li class="breadcrumb-item active" aria-current="page">404</li>
 6  </ol>
 7</nav>
 8{{ end }}
 9
10{{ define "main" }}
11<div class="container my-5">
12  <div class="section-label mb-2">404 · not found</div>
13  <h1 class="fw-bolder text-white mb-3" style="letter-spacing: -0.01em;">No such page</h1>
14  <p class="text-muted">{{ .Description }}</p>
15  <a href="/" class="btn btn-outline-light btn-sm mt-2">← Home</a>
16</div>
17{{ end }}