add footer
This commit is contained in:
parent
9cefd6525a
commit
3e18a85d26
3 changed files with 39 additions and 6 deletions
11
lib/main.typ
11
lib/main.typ
|
|
@ -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
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue