check in initial slides stuff

This commit is contained in:
Jade Lovelace 2023-08-29 18:29:47 -07:00
parent fc82829525
commit a1f48b6038
141 changed files with 24085 additions and 1 deletions

View file

@ -0,0 +1,43 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>NixCon 2023 slides</title>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<link rel="stylesheet" href="node_modules/reveal.js/dist/reset.css" />
<link rel="stylesheet" href="node_modules/reveal.js/dist/reveal.css" />
<link
rel="stylesheet"
href="node_modules/reveal.js/dist/theme/black.css"
/>
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
href="node_modules/reveal.js/plugin/highlight/monokai.css"
/>
<script type="importmap">
{
"imports": {
"reveal.js": "./node_modules/reveal.js/dist/reveal.esm.js",
"reveal.js/": "./node_modules/reveal.js/",
"reveal.js/plugin/markdown": "./node_modules/reveal.js/plugin/markdown/markdown.esm.js",
"reveal.js/plugin/highlight": "./node_modules/reveal.js/plugin/highlight/highlight.esm.js",
"reveal.js/plugin/notes": "./node_modules/reveal.js/plugin/notes/notes.esm.js"
}
}
</script>
</head>
<body>
<div class="reveal">
<div class="slides">
<section class="title-slide">
<h1>Finding things in nixpkgs and NixOS source</h1>
</section>
</div>
</div>
<script type="module" src="main.js"></script>
</body>
</html>