Files
flug/index.html
T

75 lines
2.1 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;
2026-05-29 21:26:22 -07:00
background: #0d1117;
color: #e6edf3;
2026-05-19 22:31:09 -07:00
}
h1 {
2026-05-29 21:26:22 -07:00
border-bottom: 2px solid #21262d;
2026-05-19 22:31:09 -07:00
padding-bottom: 0.3em;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin-bottom: 1rem;
padding: 1rem;
2026-05-29 21:26:22 -07:00
border: 1px solid #21262d;
2026-05-19 22:31:09 -07:00
border-radius: 6px;
2026-05-29 21:26:22 -07:00
background: #161b22;
2026-05-19 22:31:09 -07:00
}
a {
text-decoration: none;
2026-05-29 21:26:22 -07:00
color: #58a6ff;
2026-05-19 22:31:09 -07:00
font-weight: bold;
font-size: 1.2rem;
}
a:hover {
text-decoration: underline;
}
.date {
2026-05-29 21:26:22 -07:00
color: #8b949e;
2026-05-19 22:31:09 -07:00
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-28 19:11:41 -07:00
<p>
<a
2026-05-29 21:26:22 -07:00
href="/calendar/"
style="font-size: 1rem; font-weight: normal; color: #58a6ff"
2026-05-28 19:11:41 -07:00
>📅 View Calendar & Add to yours</a
>
</p>
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>