DOCS-1: Init document work

This commit is contained in:
Blake Ridgway
2026-07-28 07:20:32 -05:00
parent 8f02a3fc8e
commit 0cbcc962f7
66 changed files with 12224 additions and 71 deletions

View File

@@ -0,0 +1,39 @@
<!DOCTYPE html>
<html lang="en">
<head>
{{template "head" .}}
<title>My Docs — Arcline</title>
</head>
<body>
{{template "nav" .}}
<main class="docs-main">
<nav class="breadcrumb" aria-label="Breadcrumb">
<a href="/">Docs</a>
<span class="breadcrumb__sep">/</span>
<span>My Docs</span>
</nav>
<article class="docs-article">
<h1>My Docs</h1>
<p>Private documentation and guides for your Arcline account.</p>
</article>
{{if .Pages}}
<div class="section-index">
{{range .Pages}}
<a href="/client/{{.Slug}}/" class="section-index__card">
<span class="section-index__title">{{.Title}}</span>
{{if .Description}}<span class="section-index__desc">{{.Description}}</span>{{end}}
</a>
{{end}}
</div>
{{else}}
<p style="color:var(--text-muted);margin-top:1.5rem;">No private documentation has been added to your account yet.</p>
{{end}}
</main>
{{template "footer-simple" .}}
</body>
</html>