summaryrefslogtreecommitdiff
path: root/themes/blowfish/layouts/_default/simple.html
diff options
context:
space:
mode:
authorChristoph Cullmann <cullmann@kde.org>2024-04-28 17:33:09 +0200
committerChristoph Cullmann <cullmann@kde.org>2024-04-28 17:33:09 +0200
commite77051ccc4b47951bfa4fde2be436b1bb2fb113b (patch)
treef0b75ee3521da9c8cd39dac4359212348f70e4e8 /themes/blowfish/layouts/_default/simple.html
parent4b355837824ac2422d371acef790f0f4249255c7 (diff)
use https://github.com/nunocoracao/blowfish.git
Diffstat (limited to 'themes/blowfish/layouts/_default/simple.html')
-rw-r--r--themes/blowfish/layouts/_default/simple.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/themes/blowfish/layouts/_default/simple.html b/themes/blowfish/layouts/_default/simple.html
new file mode 100644
index 0000000..cc88479
--- /dev/null
+++ b/themes/blowfish/layouts/_default/simple.html
@@ -0,0 +1,18 @@
+{{ define "main" }}
+ <article class="max-w-full">
+ <header>
+ {{ if .Params.showBreadcrumbs | default (.Site.Params.article.showBreadcrumbs | default false) }}
+ {{ partial "breadcrumbs.html" . }}
+ {{ end }}
+ <h1 class="mt-0 text-4xl font-extrabold text-neutral-900 dark:text-neutral">
+ {{ .Title | emojify }}
+ </h1>
+ </header>
+ <section class="max-w-full mt-6 prose dark:prose-invert">
+ {{ .Content | emojify }}
+ </section>
+ <footer class="pt-8">
+ {{ partial "sharing-links.html" . }}
+ </footer>
+ </article>
+{{ end }}