import sources from scattered branches

This commit is contained in:
2026-07-08 23:12:18 -04:00
parent a1cbd1657e
commit 5e9d8f1b34
9409 changed files with 97775 additions and 7 deletions

30
main.typ Normal file
View File

@@ -0,0 +1,30 @@
#set heading(numbering: "1.1 -")
#set document(title: [The EID Wireless Masterclass])
#show: it => document("index.html", 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)
},
))
#{
include "content/index.typ"
include "content/core.typ"
include "content/data-protocols.typ"
include "content/interference-causes.typ"
include "content/interference-fixes.typ"
include "content/design.typ"
include "content/channels.typ"
include "content/bulk.typ"
include "content/network.typ"
}