add footer

This commit is contained in:
Jean-Marie 'Histausse' Mineau 2026-03-18 14:33:31 +01:00
parent 9cefd6525a
commit 3e18a85d26
Signed by: histausse
GPG key ID: B66AEEDA9B645AD2
3 changed files with 39 additions and 6 deletions

View file

@ -7,12 +7,8 @@
#let webpage(
/// Page url
url,
/// Logo in page header
logo: none,
/// Title of the page, default to document.title
title: none,
/// Page header
header: none,
/// Use only for html 'lang' attribute.
lang: "en",
//-- <head> only args --
@ -34,6 +30,12 @@
/// Navigation menu content, css style expect a list of links, but it can
/// be anything
menu: none,
/// Logo in page header
logo: none,
/// Page header
header: none,
/// Page footer
footer: none,
/// Body of the page
body
) = {
@ -53,6 +55,7 @@
html_body(
logo: logo,
header: header,
footer: footer,
menu: menu,
body
)