- dorveille.md: add ai-model/ai-provider frontmatter, restore mark tags - hugo.toml: goldmark.renderer.unsafe=true (mark/abbr support) - layouts: extract nav partial, fix JSON-LD, simplify list/index - deploy.sh: push-to-render build script (webhook-receiver triggers it) - render-footnotes.html: class-free footnote hook (staged for Hugo upgrade)
32 lines
776 B
HTML
32 lines
776 B
HTML
{{ define "main" }}
|
|
{{ partial "nav.html" . }}
|
|
|
|
<main>
|
|
<article data-layout="prose">
|
|
|
|
<header>
|
|
<h1>{{ .Title }}</h1>
|
|
{{ with .Description }}<p>{{ . }}</p>{{ end }}
|
|
</header>
|
|
|
|
<section>
|
|
{{ range .Pages }}
|
|
<article>
|
|
<header>
|
|
<h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
|
|
<p data-text="dim">
|
|
<time datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "January 2006" }}</time>
|
|
</p>
|
|
</header>
|
|
{{ with .Summary }}<p>{{ . }}</p>{{ end }}
|
|
</article>
|
|
{{ end }}
|
|
</section>
|
|
|
|
</article>
|
|
</main>
|
|
|
|
<footer>
|
|
<small><a href="/">{{ .Site.Title }}</a> · {{ now.Format "2006" }}</small>
|
|
</footer>
|
|
{{ end }}
|