diff options
| author | Danilo M. <danix@danix.xyz> | 2026-06-26 17:13:04 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-06-26 17:13:04 +0200 |
| commit | 1520f2065a67a14eaef56233b337fe4c02622b03 (patch) | |
| tree | e5760b3cf69fea3ed0b69532d931cc2c06b7e5d4 /layouts/slackware | |
| parent | 78b872fcf0cd7b73d335a6208d2bd381897a4e33 (diff) | |
| download | danixxyz-theme-1520f2065a67a14eaef56233b337fe4c02622b03.tar.gz danixxyz-theme-1520f2065a67a14eaef56233b337fe4c02622b03.zip | |
feat: slackware project single layout with project-header partial
Diffstat (limited to 'layouts/slackware')
| -rw-r--r-- | layouts/slackware/single.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/layouts/slackware/single.html b/layouts/slackware/single.html new file mode 100644 index 0000000..e1178c7 --- /dev/null +++ b/layouts/slackware/single.html @@ -0,0 +1,17 @@ +{{ define "main" }} +<article class="mx-auto px-4 py-12 max-w-4xl"> + <div class="content-grid"> + {{ partial "breadcrumb.html" . }} + + {{ partial "project-header.html" . }} + + <div class="prose dark:prose-invert max-w-none mb-12"> + {{ .Content }} + </div> + + <div class="mb-12"> + {{ partial "social-share.html" (dict "page" . "mode" "inline") }} + </div> + </div> +</article> +{{ end }} |
