Website/templates/download.html

171 lines
6.3 KiB
HTML
Raw Normal View History

2024-08-14 07:07:10 +00:00
<!DOCTYPE HTML>
<!--
Stellar by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<link rel="icon" type="image/png" href="favicon.png">
<title>Spitfire Browser - Downloads</title>
<meta content="🌐 Spitfire Browser" property="og:title" />
<meta content="Privacy respecting user friendly web browser." property="og:description" />
<meta content="https://spitfirebrowser.com/" property="og:url" />
<meta content="https://spitfirebrowser.com/favicon.png" property="og:image" />
<meta content="#f1f1f1" data-react-helmet="true" name="theme-color" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="stylesheet" href="assets/css/stars.css" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
<style>
.download-section {
text-align: center;
padding: 2em 0;
}
.download-buttons {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1em;
}
.download-button {
border-radius: 0.5em;
padding: 1em;
width: 220px;
height: 220px;
text-align: center;
transition: background-color 0.3s ease;
}
.download-button:hover {
background-color: #444;
}
.download-button img {
width: 48px;
height: 48px;
}
.download-button span {
display: block;
margin-top: 0.5em;
font-size: 1.2em;
}
/* Ensure the wrapper content remains above the background */
#wrapper {
position: relative;
z-index: 1;
}
</style>
</head>
<body class="is-preload">
<!-- Star Background Divs -->
<div id="star-background">
<div id="stars"></div>
<div id="stars2"></div>
<div id="stars3"></div>
</div>
<!-- Wrapper -->
<div id="wrapper">
<!-- Header -->
<header id="header">
<h1>Spitfire Browser Downloads</h1>
<p>Select your operating system</p>
</header>
<!-- Main -->
<div id="main">
<!-- Stable Release Section -->
<section class="download-section">
<h2>Stable Releases</h2>
<div class="download-buttons">
<a href="#" class="download-button button">
2024-08-14 10:55:34 +00:00
<img src="static/images/icons/brands/windows.svg" alt="Windows">
2024-08-14 07:07:10 +00:00
<span>Windows</span>
</a>
<a href="#" class="download-button button">
2024-08-14 10:55:34 +00:00
<img src="static/images/icons/brands/apple.svg" alt="MacOS">
2024-08-14 07:07:10 +00:00
<span>MacOS</span>
</a>
<a href="download-linux.html" class="download-button button">
2024-08-14 10:55:34 +00:00
<img src="static/images/icons/brands/linux.svg" alt="Linux">
2024-08-14 07:07:10 +00:00
<span>Linux</span>
<!-- </a>
<a href="#" class="download-button button">
2024-08-14 10:55:34 +00:00
<img src="static/images/icons/brands/linux.svg" alt="Linux (Appimage)">
2024-08-14 07:07:10 +00:00
<span>Linux (Appimage)</span>
</a> -->
<a href="#" class="download-button button">
2024-08-14 10:55:34 +00:00
<img src="static/images/icons/brands/chrome.svg" alt="ChromeOS">
2024-08-14 07:07:10 +00:00
<span>ChromeOS</span>
</a>
</div>
</section>
<!-- Nightly Release Section -->
<section class="download-section">
<h2>Nightly Releases</h2>
<div class="download-buttons">
<a href="#" class="download-button button">
2024-08-14 10:55:34 +00:00
<img src="static/images/icons/brands/windows.svg" alt="Windows Nightly">
2024-08-14 07:07:10 +00:00
<span>Windows</span>
</a>
<a href="#" class="download-button button">
2024-08-14 10:55:34 +00:00
<img src="static/images/icons/brands/linux.svg" alt="Linux (Flatpak) Nightly">
2024-08-14 07:07:10 +00:00
<span>Linux (Flatpak)</span>
</a>
</div>
</section>
</div>
<!-- Footer -->
<footer id="footer">
<section>
<h2>Support me</h2>
<ul class="icons">
<li>
<a href="#" class="icon alt">
2024-08-14 10:55:34 +00:00
<img src="static/images/icons/regular/heart.svg" alt="LibrePay">
2024-08-14 07:07:10 +00:00
<span class="label">LibrePay</span>
</a>
</li>
<li>
<a href="https://weforgecode.xyz/Spitfire/" class="icon alt">
2024-08-14 10:55:34 +00:00
<img src="static/images/icons/brands/git-alt.svg" alt="Forgejo">
2024-08-14 07:07:10 +00:00
<span class="label">Forgejo</span>
</a>
</li>
<li>
<a href="#" class="icon alt">
2024-08-14 10:55:34 +00:00
<img src="static/images/icons/brands/youtube.svg" alt="YouTube">
2024-08-14 07:07:10 +00:00
<span class="label">YouTube</span>
</a>
</li>
</ul>
</section>
<section>
<p class="copyright">&copy; Spitfire Browser. Design based on <a href="https://html5up.net">HTML5 UP</a>.</p>
</section>
</footer>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js" defer></script>
<script src="assets/js/jquery.scrollex.min.js" defer></script>
<script src="assets/js/jquery.scrolly.min.js" defer></script>
<script src="assets/js/browser.min.js" defer></script>
<script src="assets/js/breakpoints.min.js" defer></script>
<script src="assets/js/util.js" defer></script>
<script src="assets/js/main.js" defer></script>
</body>
</html>