20 writings from vault source (~/.napkin/writing/), 10 extracted from HTML. ASW Hugo pack as theme, pure ASW CSS (no theme.css). garden.trentuna.com now serves Hugo static output. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
18 lines
685 B
HTML
18 lines
685 B
HTML
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>
|
|
{{- if .IsHome -}}
|
|
{{ .Site.Title }}
|
|
{{- else -}}
|
|
{{ .Title }} · {{ .Site.Title }}
|
|
{{- end -}}
|
|
</title>
|
|
{{- with .Description }}<meta name="description" content="{{ . }}">{{- end }}
|
|
{{- if not .Description }}{{- with .Site.Params.description }}<meta name="description" content="{{ . }}">{{- end }}{{- end }}
|
|
|
|
<!-- ASW framework CSS only — no custom theme overrides -->
|
|
<link rel="stylesheet" href="{{ "css/asw.css" | absURL }}">
|
|
|
|
{{- range .AlternativeOutputFormats -}}
|
|
<link rel="{{ .Rel }}" type="{{ .MediaType.Type }}" href="{{ .Permalink | safeURL }}">
|
|
{{- end }}
|