31 lines
1.2 KiB
Typst
31 lines
1.2 KiB
Typst
#set heading(numbering: "1.1 -")
|
|
#set document(title: [The EID Wireless Masterclass])
|
|
|
|
#let doc(path, it) = document(path, html.html(
|
|
lang: "en",
|
|
{
|
|
html.head({
|
|
html.meta(charset: "utf-8")
|
|
html.meta(name: "viewport", content: "width=device-width, initial-scale=1")
|
|
html.meta(name: "color-scheme", content: "dark light")
|
|
html.title(context document.title)
|
|
html.link(rel: "stylesheet", href: "/src/style.css")
|
|
html.link(rel: "stylesheet", href: "/src/components.css")
|
|
html.script(type: "module", src: "/src/components.js")
|
|
})
|
|
html.body(it)
|
|
},
|
|
))
|
|
|
|
#{
|
|
doc("index.html", include "content/index.typ")
|
|
doc("core.html", include "content/core.typ")
|
|
// doc("data-protocols.html", include "content/data-protocols.typ")
|
|
doc("interference-causes.html", include "content/interference-causes.typ")
|
|
doc("interference-fixes.html", include "content/interference-fixes.typ")
|
|
// doc("design-notes.html", include "content/design.typ")
|
|
// doc("channel-selectors.html", include "content/channels.typ")
|
|
// doc("bulk-transmission.html", include "content/bulk.typ")
|
|
// doc("network-protocols.html", include "content/network.typ")
|
|
}
|