summaryrefslogtreecommitdiffstats
path: root/layouts/slackware/list.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/slackware/list.html')
-rw-r--r--layouts/slackware/list.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/layouts/slackware/list.html b/layouts/slackware/list.html
new file mode 100644
index 0000000..ac89356
--- /dev/null
+++ b/layouts/slackware/list.html
@@ -0,0 +1,28 @@
+{{ define "main" }}
+<section class="mx-auto px-4 py-12 max-w-7xl">
+ <div class="content-grid">
+ {{ partial "breadcrumb.html" . }}
+
+ <div class="mb-10">
+ <h1 class="text-5xl md:text-6xl font-bold mb-4 text-accent font-oxanium animate-fade-in">
+ {{ i18n "slackwareTitle" }}
+ </h1>
+ <p class="text-xl text-text-dim animate-fade-in-delay">
+ {{ i18n "slackwareSubtitle" }}
+ </p>
+ </div>
+
+ {{ with .Content }}
+ <div class="prose dark:prose-invert max-w-none mb-12">
+ {{ . }}
+ </div>
+ {{ end }}
+
+ <div class="flex flex-col gap-8">
+ {{ range $index, $p := .Pages }}
+ {{ partial "project-row.html" (dict "page" $p "index" $index) }}
+ {{ end }}
+ </div>
+ </div>
+</section>
+{{ end }}