Files
docs/templates/client_page.html
2026-07-28 07:20:32 -05:00

35 lines
856 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
{{template "head" .}}
<title>{{.Page.Title}} — My Docs — Arcline</title>
{{if .Page.Description}}<meta name="description" content="{{.Page.Description}}">{{end}}
<meta name="robots" content="noindex">
</head>
<body>
{{template "nav" .}}
<main class="docs-main">
<nav class="breadcrumb" aria-label="Breadcrumb">
<a href="/">Docs</a>
<span class="breadcrumb__sep">/</span>
<a href="/client/">My Docs</a>
<span class="breadcrumb__sep">/</span>
<span>{{.Page.Title}}</span>
</nav>
<article class="docs-article">
{{if .IsAdmin}}
<div style="margin-bottom:1.25rem;">
<a href="/admin/pages/{{.Page.ID}}/edit" class="btn btn--ghost btn--sm">Edit this page</a>
</div>
{{end}}
{{.Content}}
</article>
</main>
{{template "footer-simple" .}}
</body>
</html>