diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-03 07:47:36 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-03 07:47:36 +0000 |
commit | 1f6a9795ed529247bb3370c5efeb009a81d30c8b (patch) | |
tree | b0bb57ba2ba39cb69b7426cbc73632d1d0186c79 /docs/theme/Page.jinja | |
parent | Adding debian version 0.45+dfsg-1. (diff) | |
download | jinjax-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.jinja | 19 |
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> |