summaryrefslogtreecommitdiffstats
path: root/docs/theme/Page.jinja
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-09-03 07:47:36 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-09-03 07:47:36 +0000
commit1f6a9795ed529247bb3370c5efeb009a81d30c8b (patch)
treeb0bb57ba2ba39cb69b7426cbc73632d1d0186c79 /docs/theme/Page.jinja
parentAdding debian version 0.45+dfsg-1. (diff)
downloadjinjax-1f6a9795ed529247bb3370c5efeb009a81d30c8b.tar.xz
jinjax-1f6a9795ed529247bb3370c5efeb009a81d30c8b.zip
Merging upstream version 0.46.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--docs/theme/Page.jinja19
1 files changed, 19 insertions, 0 deletions
diff --git a/docs/theme/Page.jinja b/docs/theme/Page.jinja
new file mode 100644
index 0000000..8fec014
--- /dev/null
+++ b/docs/theme/Page.jinja
@@ -0,0 +1,19 @@
+<Layout
+ title={{ page.title }}
+ description={{ page.description }}
+ class={{ meta.get('class', 'cd-page') }}
+>
+ <NavTop></NavTop>
+ <div class="page-wrapper">
+ <NavGlobal></NavGlobal>
+ <main id="main" class="page prose">{{ content }}</main>
+ <NavLocal></NavLocal>
+ </div>
+ <PrevNext
+ curr={{ page }}
+ prev={{ page.prev_page }}
+ next={{ page.next_page }}
+ />
+ <NavMobile></NavMobile>
+ <Footer></Footer>
+</Layout>