30 lines
1.1 KiB
Typst
30 lines
1.1 KiB
Typst
#set heading(numbering: "1.1 -")
|
|
#set document(title: [The EID Wireless Masterclass])
|
|
|
|
#show html.elem.where(tag: "style"): none
|
|
|
|
#let doc(path, body) = document(path, html.html({
|
|
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/components.css")
|
|
html.script(type: "module", src: "/src/components.js")
|
|
})
|
|
html.body(body)
|
|
}))
|
|
|
|
#{
|
|
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.html", include "content/design.typ")
|
|
doc("channels.html", include "content/channels.typ")
|
|
doc("bulk.html", include "content/bulk.typ")
|
|
doc("network-protocols.html", include "content/network.typ")
|
|
}
|