Website/templates/download-linux.html

137 lines
5.9 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" />
2024-08-14 12:36:27 +00:00
<meta name="darkreader-lock">
2024-08-14 07:07:10 +00:00
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
2024-08-14 11:55:29 +00:00
<link rel="stylesheet" href="static/css/main.css" />
<link rel="stylesheet" href="static/css/stars.css" />
<noscript><link rel="stylesheet" href="static/css/noscript.css" /></noscript>
2024-08-14 07:07:10 +00:00
</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>
2024-08-14 11:55:29 +00:00
<!-- Top Floater Footer -->
<div style="background-color: red; color: white; text-align: center; padding: 10px 0; position: fixed; top: 0; width: 100%; z-index: 1000;">
🚧👷‍♂️ This site is under construction! Please check back later. 👷‍♀️🚧
</div>
2024-08-14 07:07:10 +00:00
<!-- Wrapper -->
<div id="wrapper">
<!-- Header -->
<header id="header">
<h1>Spitfire Browser Downloads for Linux</h1>
<p>Choose your preferred installation method</p>
</header>
<!-- Main -->
<div id="main">
<!-- Content -->
<section id="content" class="main">
<!-- Flatpak -->
<section id="flatpak">
<h2>Flatpak (Universal)</h2>
<p>The recommended way to install Spitfire Browser on any Linux distribution is through Flatpak.</p>
<pre><code>flatpak install flathub com.spitfirebrowser.spitfire</code></pre>
<p>To run Spitfire Browser:</p>
<pre><code>flatpak run com.spitfirebrowser.spitfire</code></pre>
</section>
<!-- Debian -->
<section id="debian">
<h2>Debian, Ubuntu or Mint</h2>
<p>Install the .deb package for Debian-based distributions.</p>
<pre><code>wget https://spitfirebrowser.com/download/spitfire-browser.deb
sudo dpkg -i spitfire-browser.deb
sudo apt-get install -f</code></pre>
</section>
<!-- Alpine Linux -->
<section id="alpine">
<h2>Alpine Linux</h2>
<p>Install Spitfire Browser on Alpine Linux.</p>
<pre><code>wget https://spitfirebrowser.com/download/spitfire-browser.apk
sudo apk add --allow-untrusted spitfire-browser.apk</code></pre>
</section>
<hr />
<!-- Flatpak Nightly -->
<section id="flatpak-nightly">
<h2>Flatpak (Nightly)</h2>
<p>For those who want to try the latest features and improvements, you can install the nightly build of Spitfire Browser.</p>
<pre><code>flatpak install flathub-beta com.spitfirebrowser.spitfire.Nightly</code></pre>
<p>To run the nightly build:</p>
<pre><code>flatpak run com.spitfirebrowser.spitfire.Nightly</code></pre>
</section>
</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 -->
2024-08-14 11:55:29 +00:00
<script src="static/js/jquery.min.js" defer></script>
<script src="static/js/jquery.scrollex.min.js" defer></script>
<script src="static/js/jquery.scrolly.min.js" defer></script>
<script src="static/js/browser.min.js" defer></script>
<script src="static/js/breakpoints.min.js" defer></script>
<script src="static/js/util.js" defer></script>
<script src="static/js/main.js" defer></script>
2024-08-14 07:07:10 +00:00
</body>
</html>