b7d48908b9
Add a calendar page and ICS file for event subscriptions. Update the Hello Linux presentation with Tux images and add setup instructions to the README.
69 lines
1.9 KiB
HTML
69 lines
1.9 KiB
HTML
<!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>
|
|
|
|
<p>
|
|
<a
|
|
href="/calendar.html"
|
|
style="font-size: 1rem; font-weight: normal; color: #0366d6"
|
|
>📅 View Calendar & Add to yours</a
|
|
>
|
|
</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>
|