Files
flug/index.html
T

65 lines
1.8 KiB
HTML
Raw Normal View History

2026-05-19 22:31:09 -07:00
<!doctype html>
2026-04-03 20:07:14 -07:00
<html lang="en">
2026-05-19 22:31:09 -07:00
<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>
2026-04-03 20:07:14 -07:00
2026-05-19 22:31:09 -07:00
<h2>Presentations</h2>
<ul>
<li>
<a href="/20260403-HelloLinux/index.html">Hello Linux</a>
<div class="date">April 3, 2026</div>
</li>
<li>
2026-05-19 22:44:36 -07:00
<a href="/20260501-HomeLab/index.html">Home Lab</a>
2026-05-19 22:31:09 -07:00
<div class="date">May 1, 2026</div>
</li>
</ul>
</body>
2026-04-03 20:07:14 -07:00
</html>