i have flu
This commit is contained in:
248
blog/routes.go
248
blog/routes.go
@@ -1,6 +1,7 @@
|
|||||||
package blog
|
package blog
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"embed"
|
||||||
"html/template"
|
"html/template"
|
||||||
"log"
|
"log"
|
||||||
"net/http"
|
"net/http"
|
||||||
@@ -8,197 +9,38 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
const pageTpl = `<!DOCTYPE html>
|
//go:embed templates/*.html
|
||||||
<html lang="en">
|
var templateFS embed.FS
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<title>{{.Title}}</title>
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
{{if .Post.HTML}}
|
|
||||||
<meta name="description" content="{{.Post.Description}}">
|
|
||||||
<meta property="og:title" content="{{.Post.Title}}">
|
|
||||||
<meta property="og:description" content="{{.Post.Description}}">
|
|
||||||
<meta property="og:type" content="article">
|
|
||||||
<meta property="og:url" content="https://chaosmith.systems/blog/posts/{{.Post.Slug}}">
|
|
||||||
<meta property="og:image" content="https://chaosmith.systems{{.Post.OGImage}}">
|
|
||||||
<meta property="og:site_name" content="Chaosmith Systems">
|
|
||||||
<meta property="article:published_time" content="{{.Post.Date.Format "2006-01-02T15:04:05Z07:00"}}">
|
|
||||||
<meta name="twitter:card" content="summary_large_image">
|
|
||||||
<meta name="twitter:title" content="{{.Post.Title}}">
|
|
||||||
<meta name="twitter:description" content="{{.Post.Description}}">
|
|
||||||
<meta name="twitter:image" content="https://chaosmith.systems{{.Post.OGImage}}">
|
|
||||||
{{else}}
|
|
||||||
<meta property="og:title" content="{{.Title}}">
|
|
||||||
<meta property="og:type" content="website">
|
|
||||||
<meta property="og:url" content="https://chaosmith.systems/blog/">
|
|
||||||
<meta property="og:site_name" content="Chaosmith Systems">
|
|
||||||
<meta name="twitter:card" content="summary">
|
|
||||||
{{end}}
|
|
||||||
<link rel="stylesheet" href="/src/thirdparty/fonts/fonts.css" media="print" onload="this.media='all'">
|
|
||||||
<link rel="alternate" type="application/rss+xml" title="Chaosmith Systems — Field Notes" href="/blog/feed.xml">
|
|
||||||
<link rel="alternate" type="application/feed+json" title="Chaosmith Systems — Field Notes (JSON)" href="/blog/feed.json">
|
|
||||||
<link rel="stylesheet" href="/src/thirdparty/highlight/default.min.css" media="print" onload="this.media='all'">
|
|
||||||
<script defer src="/src/thirdparty/highlight/highlight.min.js"></script>
|
|
||||||
<script defer src="/src/lang/ergon.js"></script>
|
|
||||||
<script defer src="/src/lang/archasm.js"></script>
|
|
||||||
<style>
|
|
||||||
:root {
|
|
||||||
--bg: #05030a;
|
|
||||||
--accent: #b574ff;
|
|
||||||
--accent-soft: rgba(181, 116, 255, 0.12);
|
|
||||||
--text: #f3f0ff;
|
|
||||||
--text-dim: #a9a3c4;
|
|
||||||
--border: rgba(255, 255, 255, 0.06);
|
|
||||||
}
|
|
||||||
* { box-sizing: border-box; }
|
|
||||||
body {
|
|
||||||
margin: 0; min-height: 100vh;
|
|
||||||
background: radial-gradient(circle at top, #1a1035 0, #05030a 55%);
|
|
||||||
color: var(--text);
|
|
||||||
font-family: "Inter", system-ui, sans-serif;
|
|
||||||
display: flex; justify-content: center;
|
|
||||||
}
|
|
||||||
.wrap { position: relative; z-index: 1; width: 100%; max-width: 1040px; padding: 32px 20px 40px; }
|
|
||||||
header {
|
|
||||||
display: flex; justify-content: space-between; align-items: center;
|
|
||||||
gap: 24px; padding: 18px 22px; border-radius: 18px;
|
|
||||||
border: 1px solid var(--border);
|
|
||||||
background: linear-gradient(135deg, rgba(255,255,255,0.02), rgba(0,0,0,0.35));
|
|
||||||
backdrop-filter: blur(18px);
|
|
||||||
}
|
|
||||||
.logo-mark {
|
|
||||||
width: 44px; height: 44px; border-radius: 14px;
|
|
||||||
border: 1px solid rgba(181,116,255,0.7);
|
|
||||||
background: radial-gradient(circle at 20% 0, rgba(255,255,255,0.25), transparent 55%),
|
|
||||||
radial-gradient(circle at 80% 100%, rgba(181,116,255,0.9), transparent 60%);
|
|
||||||
display: flex; align-items: center; justify-content: center;
|
|
||||||
font-family: "JetBrains Mono", monospace; font-weight: 600; font-size: 20px;
|
|
||||||
}
|
|
||||||
.logo-mark a { color: inherit; text-decoration: none; }
|
|
||||||
nav { display: flex; gap: 16px; align-items: center; }
|
|
||||||
nav a { color: var(--text-dim); text-decoration: none; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; }
|
|
||||||
nav a:hover { color: var(--accent); }
|
|
||||||
main { margin-top: 24px; }
|
|
||||||
.post-list { list-style: none; padding: 0; margin: 0; }
|
|
||||||
.post-list li { padding: 12px 0; border-top: 1px solid var(--border); }
|
|
||||||
.post-list li:first-child { border-top: 0; }
|
|
||||||
.post-list a { color: var(--text); text-decoration: none; font-size: 16px; }
|
|
||||||
.post-list a:hover { color: var(--accent); }
|
|
||||||
.article h1 { font-size: 28px; margin: 0 0 4px; }
|
|
||||||
.post-date { display: block; font-size: 13px; color: var(--text-dim); margin-bottom: 24px; }
|
|
||||||
.post-date-inline { font-size: 12px; color: var(--text-dim); }
|
|
||||||
.article p { line-height: 1.7; color: var(--text-dim); }
|
|
||||||
.article pre {
|
|
||||||
background: rgba(0,0,0,0.5); border: 1px solid var(--border);
|
|
||||||
border-radius: 12px; padding: 16px; overflow-x: auto;
|
|
||||||
}
|
|
||||||
.article code { font-family: "JetBrains Mono", monospace; font-size: 13px; }
|
|
||||||
.article a { color: var(--accent); }
|
|
||||||
.article img { max-width: 100%; border-radius: 12px; }
|
|
||||||
.article blockquote {
|
|
||||||
border-left: 3px solid var(--accent); margin: 0; padding: 4px 16px;
|
|
||||||
color: var(--text-dim);
|
|
||||||
}
|
|
||||||
.article h1 { color: var(--text); }
|
|
||||||
.article h2, .article h3 { color: var(--accent); }
|
|
||||||
.article ul, .article ol { color: var(--text-dim); line-height: 1.7; }
|
|
||||||
.article details {
|
|
||||||
border: 1px solid var(--border); border-radius: 12px;
|
|
||||||
background: rgba(0,0,0,0.4); margin: 20px 0;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
.article details summary {
|
|
||||||
cursor: pointer; padding: 14px 18px; font-size: 14px;
|
|
||||||
color: var(--accent); user-select: none; line-height: 1.5;
|
|
||||||
background: linear-gradient(135deg, rgba(181,116,255,0.06), rgba(0,0,0,0.5));
|
|
||||||
list-style: none;
|
|
||||||
}
|
|
||||||
.article details summary::-webkit-details-marker { display: none; }
|
|
||||||
.article details summary::before { content: '▸ '; font-size: 12px; }
|
|
||||||
.article details[open] summary::before { content: '▾ '; }
|
|
||||||
.article details summary:hover { color: var(--text); }
|
|
||||||
.article details[open] summary { border-bottom: 1px solid var(--border); }
|
|
||||||
.article details[open] {
|
|
||||||
color: var(--text-dim); line-height: 1.7; font-size: 14px;
|
|
||||||
}
|
|
||||||
.article details[open] > *:not(summary) {
|
|
||||||
display: block; padding: 14px 18px;
|
|
||||||
}
|
|
||||||
footer { margin-top: 30px; font-size: 11px; color: var(--text-dim); display: flex; justify-content: space-between; padding: 4px 2px; }
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="wrap">
|
|
||||||
<header>
|
|
||||||
<div style="display:flex; gap:14px; align-items:center;">
|
|
||||||
<div class="logo-mark"><a href="/blog/">CS</a></div>
|
|
||||||
<nav>
|
|
||||||
<a href="/" hx-get="/" hx-target="main" hx-push-url="true">Home</a>
|
|
||||||
<a href="/blog/" hx-get="/blog/" hx-target="main" hx-push-url="true">Blog</a>
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
<a href="/blog/feed.xml" style="margin-left:auto; font-size:13px; text-transform:uppercase; letter-spacing:0.1em; color:var(--text-dim); text-decoration:none;" hx-boost="false">RSS</a>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
{{if .Post.HTML}}
|
|
||||||
<article class="article">
|
|
||||||
<h1>{{.Post.Title}}</h1>
|
|
||||||
<time class="post-date">{{.Post.Date.Format "January 2, 2006"}}</time>
|
|
||||||
{{.Post.HTML | safehtml}}
|
|
||||||
</article>
|
|
||||||
{{else}}
|
|
||||||
<h1>Field Notes</h1>
|
|
||||||
{{if .Posts}}
|
|
||||||
<ul class="post-list">
|
|
||||||
{{range .Posts}}
|
|
||||||
<li>
|
|
||||||
<a href="/blog/posts/{{.Slug}}" hx-get="/blog/posts/{{.Slug}}" hx-target="main" hx-push-url="true">{{.Title}}</a>
|
|
||||||
<span class="post-date-inline">{{.Date.Format "Jan 2, 2006"}}</span>
|
|
||||||
</li>
|
|
||||||
{{end}}
|
|
||||||
</ul>
|
|
||||||
{{else}}
|
|
||||||
<p style="color: var(--text-dim);">No posts yet.</p>
|
|
||||||
{{end}}
|
|
||||||
{{end}}
|
|
||||||
</main>
|
|
||||||
<footer>
|
|
||||||
<span>Running on self-hosted infrastructure.</span>
|
|
||||||
<span>Chaosmith Systems</span>
|
|
||||||
</footer>
|
|
||||||
</div>
|
|
||||||
<script>
|
|
||||||
function initPage(){hljs.highlightAll();}
|
|
||||||
window.addEventListener('DOMContentLoaded',initPage);
|
|
||||||
document.body.addEventListener('htmx:afterSwap',initPage);
|
|
||||||
</script>
|
|
||||||
</body>
|
|
||||||
</html>`
|
|
||||||
|
|
||||||
type pageData struct {
|
type pageData struct {
|
||||||
Title string
|
Title string
|
||||||
Posts []Post
|
Posts []Post
|
||||||
Post Post
|
Post Post
|
||||||
|
PostList bool
|
||||||
ActiveSlug string
|
ActiveSlug string
|
||||||
}
|
}
|
||||||
|
|
||||||
var tmpl *template.Template
|
|
||||||
|
|
||||||
func safehtml(s string) template.HTML {
|
func safehtml(s string) template.HTML {
|
||||||
return template.HTML(s)
|
return template.HTML(s)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var tmpl *template.Template
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
var err error
|
var err error
|
||||||
tmpl, err = template.New("blog").Funcs(template.FuncMap{"safehtml": safehtml}).Parse(pageTpl)
|
tmpl, err = template.New("").Funcs(template.FuncMap{"safehtml": safehtml}).ParseFS(templateFS, "templates/*.html")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func render(w http.ResponseWriter, data pageData) {
|
func render(w http.ResponseWriter, r *http.Request, data pageData) {
|
||||||
w.Header().Set("Content-Type", "text/html; charset=utf-8")
|
w.Header().Set("Content-Type", "text/html; charset=utf-8")
|
||||||
tmpl.Execute(w, data)
|
if r.Header.Get("HX-Request") == "true" {
|
||||||
|
tmpl.ExecuteTemplate(w, "main-content", data)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
tmpl.ExecuteTemplate(w, "base.html", data)
|
||||||
}
|
}
|
||||||
|
|
||||||
func RegisterRoutes(mux *http.ServeMux, contentDir string) error {
|
func RegisterRoutes(mux *http.ServeMux, contentDir string) error {
|
||||||
@@ -235,7 +77,7 @@ func RegisterRoutes(mux *http.ServeMux, contentDir string) error {
|
|||||||
http.NotFound(w, r)
|
http.NotFound(w, r)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
render(w, pageData{
|
render(w, r, pageData{
|
||||||
Title: p.Title + " — Chaosmith Systems",
|
Title: p.Title + " — Chaosmith Systems",
|
||||||
Posts: store.All(),
|
Posts: store.All(),
|
||||||
Post: p,
|
Post: p,
|
||||||
@@ -247,72 +89,46 @@ func RegisterRoutes(mux *http.ServeMux, contentDir string) error {
|
|||||||
http.NotFound(w, r)
|
http.NotFound(w, r)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
render(w, pageData{
|
render(w, r, pageData{
|
||||||
Title: "Chaosmith Systems — Field Notes",
|
Title: "Chaosmith Systems — Field Notes",
|
||||||
Posts: store.All(),
|
Posts: store.All(),
|
||||||
|
PostList: true,
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
// RSS feed
|
|
||||||
mux.HandleFunc("/blog/feed.xml", func(w http.ResponseWriter, r *http.Request) {
|
mux.HandleFunc("/blog/feed.xml", func(w http.ResponseWriter, r *http.Request) {
|
||||||
w.Header().Set("Content-Type", "application/rss+xml; charset=utf-8")
|
w.Header().Set("Content-Type", "application/rss+xml; charset=utf-8")
|
||||||
w.Write([]byte(generateRSS(store)))
|
w.Write([]byte(generateRSS(store)))
|
||||||
})
|
})
|
||||||
|
|
||||||
// JSON feed
|
|
||||||
mux.HandleFunc("/blog/feed.json", func(w http.ResponseWriter, r *http.Request) {
|
mux.HandleFunc("/blog/feed.json", func(w http.ResponseWriter, r *http.Request) {
|
||||||
w.Header().Set("Content-Type", "application/feed+json; charset=utf-8")
|
w.Header().Set("Content-Type", "application/feed+json; charset=utf-8")
|
||||||
w.Write([]byte(generateJSONFeed(store)))
|
w.Write([]byte(generateJSONFeed(store)))
|
||||||
})
|
})
|
||||||
|
|
||||||
// Sitemap
|
|
||||||
mux.HandleFunc("/sitemap.xml", func(w http.ResponseWriter, r *http.Request) {
|
mux.HandleFunc("/sitemap.xml", func(w http.ResponseWriter, r *http.Request) {
|
||||||
w.Header().Set("Content-Type", "application/xml; charset=utf-8")
|
w.Header().Set("Content-Type", "application/xml; charset=utf-8")
|
||||||
w.Write([]byte(generateSitemap(store)))
|
w.Write([]byte(generateSitemap(store)))
|
||||||
})
|
})
|
||||||
|
|
||||||
// robots.txt
|
|
||||||
mux.HandleFunc("/robots.txt", func(w http.ResponseWriter, r *http.Request) {
|
mux.HandleFunc("/robots.txt", func(w http.ResponseWriter, r *http.Request) {
|
||||||
w.Header().Set("Content-Type", "text/plain")
|
w.Header().Set("Content-Type", "text/plain")
|
||||||
w.Write([]byte(`User-agent: *
|
w.Write([]byte("User-agent: *\nAllow: /\n\nSitemap: https://chaosmith.systems/sitemap.xml\n"))
|
||||||
Allow: /
|
|
||||||
|
|
||||||
Sitemap: https://chaosmith.systems/sitemap.xml
|
|
||||||
|
|
||||||
|
|
||||||
# +---------------------+
|
|
||||||
# | |
|
|
||||||
# | |
|
|
||||||
# | |
|
|
||||||
# | _ |
|
|
||||||
# | .' '. |
|
|
||||||
# | .' '. |
|
|
||||||
# | .' '. |
|
|
||||||
# | .' '. |
|
|
||||||
# |.' ,-------. '.|
|
|
||||||
# | ,' . '. |
|
|
||||||
# | ( ( ) ) |
|
|
||||||
# | '. ' ,' |
|
|
||||||
# | '-------' |
|
|
||||||
# | |
|
|
||||||
# | +---------+ |
|
|
||||||
# | | AGIO | |
|
|
||||||
# | | RPC | |
|
|
||||||
# |\ +---------+ /|
|
|
||||||
# | \ .' |
|
|
||||||
# | '. / |
|
|
||||||
# | \ / |
|
|
||||||
# | \ / |
|
|
||||||
# | \ .' |
|
|
||||||
# | '. / |
|
|
||||||
# | \ / |
|
|
||||||
# | - |
|
|
||||||
# | |
|
|
||||||
# | |
|
|
||||||
# +---------------------+
|
|
||||||
`))
|
|
||||||
})
|
})
|
||||||
|
|
||||||
log.Printf("blog: loaded %d post(s) from %s, mounted at /blog/", store.Count(), contentDir)
|
log.Printf("blog: loaded %d post(s) from %s, mounted at /blog/", store.Count(), contentDir)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func ServeLanding(w http.ResponseWriter, r *http.Request) {
|
||||||
|
if r.URL.Path != "/" {
|
||||||
|
http.NotFound(w, r)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
data := pageData{Title: "Chaosmith Systems"}
|
||||||
|
if r.Header.Get("HX-Request") == "true" {
|
||||||
|
tmpl.ExecuteTemplate(w, "main-content", data)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
tmpl.ExecuteTemplate(w, "base.html", data)
|
||||||
|
}
|
||||||
|
|||||||
217
blog/templates/base.html
Normal file
217
blog/templates/base.html
Normal file
@@ -0,0 +1,217 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>{{.Title}}</title>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
{{if .Post.HTML}}
|
||||||
|
<meta name="description" content="{{.Post.Description}}">
|
||||||
|
<meta property="og:title" content="{{.Post.Title}}">
|
||||||
|
<meta property="og:description" content="{{.Post.Description}}">
|
||||||
|
<meta property="og:type" content="article">
|
||||||
|
<meta property="og:url" content="https://chaosmith.systems/blog/posts/{{.Post.Slug}}">
|
||||||
|
<meta property="og:image" content="https://chaosmith.systems{{.Post.OGImage}}">
|
||||||
|
<meta property="og:site_name" content="Chaosmith Systems">
|
||||||
|
<meta property="article:published_time" content="{{.Post.Date.Format "2006-01-02T15:04:05Z07:00"}}">
|
||||||
|
<meta name="twitter:card" content="summary_large_image">
|
||||||
|
<meta name="twitter:title" content="{{.Post.Title}}">
|
||||||
|
<meta name="twitter:description" content="{{.Post.Description}}">
|
||||||
|
<meta name="twitter:image" content="https://chaosmith.systems{{.Post.OGImage}}">
|
||||||
|
{{else}}
|
||||||
|
<meta property="og:title" content="{{.Title}}">
|
||||||
|
<meta property="og:type" content="website">
|
||||||
|
<meta property="og:url" content="https://chaosmith.systems/blog/">
|
||||||
|
<meta property="og:site_name" content="Chaosmith Systems">
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
{{end}}
|
||||||
|
<link rel="stylesheet" href="/src/thirdparty/fonts/fonts.css" media="print" onload="this.media='all'">
|
||||||
|
<link rel="alternate" type="application/rss+xml" title="Chaosmith Systems — Field Notes" href="/blog/feed.xml">
|
||||||
|
<link rel="alternate" type="application/feed+json" title="Chaosmith Systems — Field Notes (JSON)" href="/blog/feed.json">
|
||||||
|
<link rel="stylesheet" href="/src/thirdparty/highlight/default.min.css" media="print" onload="this.media='all'">
|
||||||
|
<script defer src="/src/thirdparty/htmx.min.js.js"></script>
|
||||||
|
<script defer src="/src/thirdparty/highlight/highlight.min.js"></script>
|
||||||
|
<script defer src="/src/lang/ergon.js"></script>
|
||||||
|
<script defer src="/src/lang/archasm.js"></script>
|
||||||
|
<style>
|
||||||
|
:root {
|
||||||
|
--bg: #05030a;
|
||||||
|
--accent: #b574ff;
|
||||||
|
--accent-soft: rgba(181, 116, 255, 0.12);
|
||||||
|
--text: #f3f0ff;
|
||||||
|
--text-dim: #a9a3c4;
|
||||||
|
--border: rgba(255, 255, 255, 0.06);
|
||||||
|
}
|
||||||
|
* { box-sizing: border-box; }
|
||||||
|
body {
|
||||||
|
margin: 0; min-height: 100vh;
|
||||||
|
background: radial-gradient(circle at top, #1a1035 0, #05030a 55%);
|
||||||
|
color: var(--text);
|
||||||
|
font-family: "Inter", system-ui, sans-serif;
|
||||||
|
display: flex; justify-content: center;
|
||||||
|
}
|
||||||
|
.wrap { position: relative; z-index: 1; width: 100%; max-width: 1040px; padding: 32px 20px 40px; }
|
||||||
|
header {
|
||||||
|
display: flex; justify-content: space-between; align-items: center;
|
||||||
|
gap: 24px; padding: 18px 22px; border-radius: 18px;
|
||||||
|
border: 1px solid var(--border);
|
||||||
|
background: linear-gradient(135deg, rgba(255,255,255,0.02), rgba(0,0,0,0.35));
|
||||||
|
backdrop-filter: blur(18px);
|
||||||
|
}
|
||||||
|
.logo-mark {
|
||||||
|
width: 44px; height: 44px; border-radius: 14px;
|
||||||
|
border: 1px solid rgba(181,116,255,0.7);
|
||||||
|
background: radial-gradient(circle at 20% 0, rgba(255,255,255,0.25), transparent 55%),
|
||||||
|
radial-gradient(circle at 80% 100%, rgba(181,116,255,0.9), transparent 60%);
|
||||||
|
display: flex; align-items: center; justify-content: center;
|
||||||
|
font-family: "JetBrains Mono", monospace; font-weight: 600; font-size: 20px;
|
||||||
|
}
|
||||||
|
.logo-mark a { color: inherit; text-decoration: none; }
|
||||||
|
nav { display: flex; gap: 16px; align-items: center; }
|
||||||
|
nav a { color: var(--text-dim); text-decoration: none; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; }
|
||||||
|
nav a:hover { color: var(--accent); }
|
||||||
|
main { margin-top: 24px; }
|
||||||
|
main.grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 20px; }
|
||||||
|
@media (max-width: 820px) { main.grid { grid-template-columns: minmax(0, 1fr); } }
|
||||||
|
.post-list { list-style: none; padding: 0; margin: 0; }
|
||||||
|
.post-list li { padding: 12px 0; border-top: 1px solid var(--border); }
|
||||||
|
.post-list li:first-child { border-top: 0; }
|
||||||
|
.post-list a { color: var(--text); text-decoration: none; font-size: 16px; }
|
||||||
|
.post-list a:hover { color: var(--accent); }
|
||||||
|
.article h1 { font-size: 28px; margin: 0 0 4px; }
|
||||||
|
.post-date { display: block; font-size: 13px; color: var(--text-dim); margin-bottom: 24px; }
|
||||||
|
.post-date-inline { font-size: 12px; color: var(--text-dim); }
|
||||||
|
.article p { line-height: 1.7; color: var(--text-dim); }
|
||||||
|
.article pre {
|
||||||
|
background: rgba(0,0,0,0.5); border: 1px solid var(--border);
|
||||||
|
border-radius: 12px; padding: 16px; overflow-x: auto;
|
||||||
|
}
|
||||||
|
.article code { font-family: "JetBrains Mono", monospace; font-size: 13px; }
|
||||||
|
.article a { color: var(--accent); }
|
||||||
|
.article img { max-width: 100%; border-radius: 12px; }
|
||||||
|
.article blockquote {
|
||||||
|
border-left: 3px solid var(--accent); margin: 0; padding: 4px 16px;
|
||||||
|
color: var(--text-dim);
|
||||||
|
}
|
||||||
|
.article h1 { color: var(--text); }
|
||||||
|
.article h2, .article h3 { color: var(--accent); }
|
||||||
|
.article ul, .article ol { color: var(--text-dim); line-height: 1.7; }
|
||||||
|
.article details {
|
||||||
|
border: 1px solid var(--border); border-radius: 12px;
|
||||||
|
background: rgba(0,0,0,0.4); margin: 20px 0;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
.article details summary {
|
||||||
|
cursor: pointer; padding: 14px 18px; font-size: 14px;
|
||||||
|
color: var(--accent); user-select: none; line-height: 1.5;
|
||||||
|
background: linear-gradient(135deg, rgba(181,116,255,0.06), rgba(0,0,0,0.5));
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
.article details summary::-webkit-details-marker { display: none; }
|
||||||
|
.article details summary::before { content: '▸ '; font-size: 12px; }
|
||||||
|
.article details[open] summary::before { content: '▾ '; }
|
||||||
|
.article details summary:hover { color: var(--text); }
|
||||||
|
.article details[open] summary { border-bottom: 1px solid var(--border); }
|
||||||
|
.article details[open] {
|
||||||
|
color: var(--text-dim); line-height: 1.7; font-size: 14px;
|
||||||
|
}
|
||||||
|
.article details[open] > *:not(summary) {
|
||||||
|
display: block; padding: 14px 18px;
|
||||||
|
}
|
||||||
|
.landing-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 20px; }
|
||||||
|
@media (max-width: 820px) { .landing-grid { grid-template-columns: minmax(0, 1fr); } }
|
||||||
|
/* Landing page styles */
|
||||||
|
.hero {
|
||||||
|
padding: 22px; border-radius: 18px; border: 1px solid var(--border);
|
||||||
|
background: radial-gradient(circle at 0 0, rgba(181,116,255,0.18), transparent 60%),
|
||||||
|
linear-gradient(145deg, rgba(0,0,0,0.85), rgba(8,4,22,0.95));
|
||||||
|
}
|
||||||
|
.hero-title { font-size: clamp(24px, 3.3vw, 30px); margin: 0 0 10px; }
|
||||||
|
.hero-sub { margin: 0 0 18px; font-size: 14px; color: var(--text-dim); }
|
||||||
|
.hero-grid {
|
||||||
|
display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||||
|
gap: 10px; margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
@media (max-width: 640px) { .hero-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
|
||||||
|
.pill {
|
||||||
|
padding: 9px 10px; border-radius: 13px;
|
||||||
|
background: rgba(0,0,0,0.55); border: 1px solid rgba(255,255,255,0.05);
|
||||||
|
font-size: 12px; color: var(--text-dim);
|
||||||
|
}
|
||||||
|
.pill span {
|
||||||
|
display: block; font-size: 11px; text-transform: uppercase;
|
||||||
|
letter-spacing: 0.12em; color: var(--accent); margin-bottom: 4px;
|
||||||
|
}
|
||||||
|
.hero-footer {
|
||||||
|
display: flex; flex-wrap: wrap; gap: 10px;
|
||||||
|
align-items: center; justify-content: space-between;
|
||||||
|
}
|
||||||
|
.btn-primary {
|
||||||
|
display: inline-flex; align-items: center; justify-content: center;
|
||||||
|
padding: 9px 18px; border-radius: 999px; border: 0; cursor: pointer;
|
||||||
|
font-size: 13px; font-weight: 600; font-family: inherit;
|
||||||
|
background: radial-gradient(circle at 0 0, #ffd0ff 0, #b574ff 40%, #5b38ff 100%);
|
||||||
|
color: #05030a; text-decoration: none;
|
||||||
|
}
|
||||||
|
.btn-primary:hover { filter: brightness(1.05); }
|
||||||
|
.subnote { font-size: 11px; color: var(--text-dim); max-width: 260px; }
|
||||||
|
.side {
|
||||||
|
display: flex; flex-direction: column; gap: 14px;
|
||||||
|
}
|
||||||
|
@media (max-width: 820px) { .side { text-align: left; } }
|
||||||
|
.card {
|
||||||
|
border-radius: 16px; border: 1px solid var(--border);
|
||||||
|
background: linear-gradient(150deg, rgba(8,5,20,0.96), rgba(4,3,10,0.96));
|
||||||
|
padding: 16px 16px 14px;
|
||||||
|
}
|
||||||
|
.card h2 {
|
||||||
|
margin: 0 0 8px; font-size: 14px; text-transform: uppercase;
|
||||||
|
letter-spacing: 0.16em; color: var(--text-dim);
|
||||||
|
}
|
||||||
|
.card p { margin: 0 0 12px; font-size: 13px; color: var(--text-dim); }
|
||||||
|
.list { list-style: none; margin: 0; padding: 0; font-size: 13px; }
|
||||||
|
.list li {
|
||||||
|
display: flex; align-items: center; justify-content: space-between;
|
||||||
|
gap: 10px; padding: 6px 0; border-top: 1px solid rgba(255,255,255,0.05);
|
||||||
|
}
|
||||||
|
.list li:first-child { border-top: 0; }
|
||||||
|
.list-label { color: var(--text); }
|
||||||
|
.list-tag {
|
||||||
|
font-size: 11px; color: var(--text-dim);
|
||||||
|
padding: 3px 8px; border-radius: 999px; background: var(--accent-soft);
|
||||||
|
}
|
||||||
|
.links { display: flex; flex-wrap: wrap; gap: 8px; }
|
||||||
|
.chip {
|
||||||
|
font-size: 12px; padding: 6px 10px; border-radius: 999px;
|
||||||
|
border: 1px solid rgba(255,255,255,0.08); background: rgba(0,0,0,0.6);
|
||||||
|
}
|
||||||
|
.chip a { color: var(--accent); text-decoration: none; }
|
||||||
|
footer { margin-top: 30px; font-size: 11px; color: var(--text-dim); display: flex; justify-content: space-between; padding: 4px 2px; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="wrap">
|
||||||
|
<header>
|
||||||
|
<div style="display:flex; gap:14px; align-items:center;">
|
||||||
|
<div class="logo-mark"><a href="/" hx-get="/" hx-target="main" hx-push-url="true">CS</a></div>
|
||||||
|
<nav>
|
||||||
|
<a href="/" hx-get="/" hx-target="main" hx-push-url="true">Home</a>
|
||||||
|
<a href="/blog/" hx-get="/blog/" hx-target="main" hx-push-url="true">Blog</a>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
<a href="/blog/feed.xml" style="margin-left:auto; font-size:13px; text-transform:uppercase; letter-spacing:0.1em; color:var(--text-dim); text-decoration:none;" hx-boost="false">RSS</a>
|
||||||
|
</header>
|
||||||
|
<main>
|
||||||
|
{{template "main-content" .}}
|
||||||
|
</main>
|
||||||
|
<footer>
|
||||||
|
<span>Running on self-hosted infrastructure.</span>
|
||||||
|
<span>Chaosmith Systems</span>
|
||||||
|
</footer>
|
||||||
|
</div>
|
||||||
|
<script>
|
||||||
|
function initPage(){hljs.highlightAll();}
|
||||||
|
window.addEventListener('DOMContentLoaded',initPage);
|
||||||
|
document.body.addEventListener('htmx:afterSwap',initPage);
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
70
blog/templates/landing.html
Normal file
70
blog/templates/landing.html
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
{{define "landing-content"}}
|
||||||
|
<div class="landing-grid">
|
||||||
|
<section class="hero">
|
||||||
|
<h2 class="hero-title">Forging systems from controlled chaos.</h2>
|
||||||
|
<p class="hero-sub">
|
||||||
|
Engineering, music, and experiments connected under one namespace.
|
||||||
|
This site is the central entry point to everything running on <strong>chaosmith.systems</strong>.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<div class="hero-grid">
|
||||||
|
<div class="pill">
|
||||||
|
<span>Engineering</span>
|
||||||
|
Modular input devices, VR / XR tooling, custom infra.
|
||||||
|
</div>
|
||||||
|
<div class="pill">
|
||||||
|
<span>Audio</span>
|
||||||
|
Cinematic strings, deathstep textures, dreadful vibes.
|
||||||
|
</div>
|
||||||
|
<div class="pill">
|
||||||
|
<span>Labs</span>
|
||||||
|
Prototypes, agents, data stacks, weird side projects.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="hero-footer">
|
||||||
|
<a class="btn-primary" href="/blog/" hx-get="/blog/" hx-target="main" hx-push-url="true">View blog</a>
|
||||||
|
<p class="subnote">
|
||||||
|
This is an evolving node. Expect broken links, work-in-progress bs,
|
||||||
|
and the occasional cursed experiment.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<aside class="side">
|
||||||
|
<div class="card">
|
||||||
|
<h2>Currently in focus</h2>
|
||||||
|
<ul class="list">
|
||||||
|
<li>
|
||||||
|
<span class="list-label">ARCHON GRID</span>
|
||||||
|
<span class="list-tag">symbolic engine</span>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<span class="list-label">Modular VR / XR input</span>
|
||||||
|
<span class="list-tag">hardware</span>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<span class="list-label">Star Citizen tools</span>
|
||||||
|
<span class="list-tag">analytics</span>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<span class="list-label">Dreadscore / deathstep</span>
|
||||||
|
<span class="list-tag">music</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="card">
|
||||||
|
<h2>Links & contact</h2>
|
||||||
|
<p>Later this block can link to projects, docs, and public repos hosted on subdomains.</p>
|
||||||
|
<div class="links">
|
||||||
|
<div class="chip"><a href="https://git.chaosmith.systems">Git repos</a></div>
|
||||||
|
<div class="chip"><a href="https://t.me/CyrnikBeerz">Telegram meme channel</a></div>
|
||||||
|
<div class="chip"><a href="matrix:u/@pierre:chaosmith.systems">Matrix: @pierre:chaosmith.systems</a></div>
|
||||||
|
<div class="chip"><a href="mailto:pierre@chaosmith.systems">Email: pierre@chaosmith.systems</a></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</aside>
|
||||||
|
<img src="ABSTRACTS.png" style="box-shadow: 0 4px 24px rgba(0,0,0,0.6); border-radius: 6px;" />
|
||||||
|
</div>
|
||||||
|
{{end}}
|
||||||
25
blog/templates/main.html
Normal file
25
blog/templates/main.html
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
{{define "main-content"}}
|
||||||
|
{{if .Post.HTML}}
|
||||||
|
<article class="article">
|
||||||
|
<h1>{{.Post.Title}}</h1>
|
||||||
|
<time class="post-date">{{.Post.Date.Format "January 2, 2006"}}</time>
|
||||||
|
{{.Post.HTML | safehtml}}
|
||||||
|
</article>
|
||||||
|
{{else if .PostList}}
|
||||||
|
<h1>Field Notes</h1>
|
||||||
|
{{if .Posts}}
|
||||||
|
<ul class="post-list">
|
||||||
|
{{range .Posts}}
|
||||||
|
<li>
|
||||||
|
<a href="/blog/posts/{{.Slug}}" hx-get="/blog/posts/{{.Slug}}" hx-target="main" hx-push-url="true">{{.Title}}</a>
|
||||||
|
<span class="post-date-inline">{{.Date.Format "Jan 2, 2006"}}</span>
|
||||||
|
</li>
|
||||||
|
{{end}}
|
||||||
|
</ul>
|
||||||
|
{{else}}
|
||||||
|
<p style="color: var(--text-dim);">No posts yet.</p>
|
||||||
|
{{end}}
|
||||||
|
{{else}}
|
||||||
|
{{template "landing-content" .}}
|
||||||
|
{{end}}
|
||||||
|
{{end}}
|
||||||
@@ -377,7 +377,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="hero-footer">
|
<div class="hero-footer">
|
||||||
<a class="btn-primary" href="/blog/">View blog</a>
|
<a class="btn-primary" href="/blog/" hx-get="/blog/" hx-target="main" hx-push-url="true">View blog</a>
|
||||||
<p class="subnote">
|
<p class="subnote">
|
||||||
This is an evolving node. Expect broken links, work-in-progress bs,
|
This is an evolving node. Expect broken links, work-in-progress bs,
|
||||||
and the occasional cursed experiment.
|
and the occasional cursed experiment.
|
||||||
|
|||||||
6
main.go
6
main.go
@@ -35,9 +35,6 @@ func gzipHandler(next http.Handler) http.Handler {
|
|||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
mux := http.NewServeMux()
|
mux := http.NewServeMux()
|
||||||
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
|
|
||||||
http.ServeFile(w, r, "index.html")
|
|
||||||
})
|
|
||||||
mux.HandleFunc("/ABSTRACTS.png", func(w http.ResponseWriter, r *http.Request) {
|
mux.HandleFunc("/ABSTRACTS.png", func(w http.ResponseWriter, r *http.Request) {
|
||||||
http.ServeFile(w, r, "ABSTRACTS.png")
|
http.ServeFile(w, r, "ABSTRACTS.png")
|
||||||
})
|
})
|
||||||
@@ -48,6 +45,9 @@ func main() {
|
|||||||
log.Fatalf("blog: %v", err)
|
log.Fatalf("blog: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Landing page — served by blog package so htmx can swap between sections
|
||||||
|
mux.HandleFunc("/", blog.ServeLanding)
|
||||||
|
|
||||||
log.Println("listening on :8000")
|
log.Println("listening on :8000")
|
||||||
http.ListenAndServe(":8000", gzipHandler(mux))
|
http.ListenAndServe(":8000", gzipHandler(mux))
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user