add: presentation

This commit is contained in:
2026-04-03 20:07:14 -07:00
commit 3fc28bded1
21 changed files with 1408 additions and 0 deletions

57
index.html Normal file
View File

@@ -0,0 +1,57 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FLUG Presentations</title>
<style>
body {
font-family: system-ui, -apple-system, sans-serif;
max-width: 800px;
margin: 0 auto;
padding: 2rem;
line-height: 1.5;
}
h1 {
border-bottom: 2px solid #eaecef;
padding-bottom: 0.3em;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin-bottom: 1rem;
padding: 1rem;
border: 1px solid #eaecef;
border-radius: 6px;
}
a {
text-decoration: none;
color: #0366d6;
font-weight: bold;
font-size: 1.2rem;
}
a:hover {
text-decoration: underline;
}
.date {
color: #586069;
font-size: 0.9rem;
margin-top: 0.5rem;
}
</style>
</head>
<body>
<h1>FLUG Presentations</h1>
<p>Welcome to the presentation repository for FLUG.</p>
<h2>Presentations</h2>
<ul>
<li>
<a href="/20260403-HelloLinux/index.html">Hello Linux</a>
<div class="date">April 3, 2026</div>
</li>
</ul>
</body>
</html>