Hugo static site with an intentionally minimal single-page copy — English default, German under /de/ — while the project stays pre-alpha. No CMS, no external theme, no webfonts, no external requests. System-UI sans on a paper-white / near-black palette with a deep crimson accent; a small wicket-gate SVG as the sole brand mark. Hosting: nginx on forge-runner-01 serves /var/www/furtka.org; the upstream openresty proxy terminates TLS so the VM itself only speaks plain HTTP. Deploy is ./website/deploy.sh (rsync + remote hugo --minify). One-time VM bootstrap in ops/nginx/setup-vm.sh.
21 lines
561 B
HTML
21 lines
561 B
HTML
{{ define "main" }}
|
|
<article>
|
|
<header class="page-header">
|
|
<h1>{{ .Title }}</h1>
|
|
{{ with .Params.description }}<p class="lede">{{ . }}</p>{{ end }}
|
|
</header>
|
|
<div class="prose{{ if .Params.wide }} prose--wide{{ end }}">
|
|
{{ .Content }}
|
|
</div>
|
|
{{ with .Pages }}
|
|
<ul class="post-list">
|
|
{{ range . }}
|
|
<li>
|
|
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
|
|
{{ with .Date }}<time datetime="{{ .Format "2006-01-02" }}">{{ .Format "2006-01-02" }}</time>{{ end }}
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
{{ end }}
|
|
</article>
|
|
{{ end }}
|