Website/templates/news.html

114 lines
4.5 KiB
HTML
Raw Normal View History

2024-08-14 10:43:07 +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>{{.Title}}</title>
<meta content="🌐 {{.Title}}" 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" />
2024-08-14 11:55:29 +00:00
<link rel="stylesheet" href="/static/css/main.css" />
<link rel="stylesheet" href="/static/css/stars.css" />
<link rel="stylesheet" href="/static/css/extras.css" />
<noscript><link rel="stylesheet" href="/static/css/noscript.css" /></noscript>
2024-08-14 10:43:07 +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 10:43:07 +00:00
<!-- Wrapper -->
<div id="wrapper">
<!-- Header -->
2024-08-14 11:55:29 +00:00
<header id="header" class="alt">
<span class="logo"><img src="/static/images/logo.svg" alt="Spitfire Logo" /></span>
<h1>Spitfire Browser</h1>
<p>News</p>
2024-08-14 10:43:07 +00:00
</header>
<!-- Main -->
<div id="main">
<!-- Stable Release Section -->
2024-08-14 11:55:29 +00:00
<section id="cta" class="main special">
<div class="center-text">
<header class="major">
<h2>{{.Title}}</h2>
<p>{{.Content}}</p>
</header>
<footer class="major">
<ul class="actions special">
{{if .PrevLink}}
<li><a href="{{.PrevLink}}" class="button primary small">Previous</a></li>
{{end}}
<li><a href="/" class="button primary small">Home</a></li>
{{if .NextLink}}
<li><a href="{{.NextLink}}" class="button primary small">Next</a></li>
{{end}}
</ul>
</footer>
2024-08-14 10:43:07 +00:00
</div>
</section>
</div>
<!-- Footer -->
<footer id="footer">
<section>
<h2>Support me</h2>
<ul class="icons">
<li>
<a href="#" class="icon alt">
2024-08-14 11:55:29 +00:00
<img src="/static/images/icons/regular/heart.svg" alt="LibrePay">
2024-08-14 10:43:07 +00:00
<span class="label">LibrePay</span>
</a>
</li>
<li>
<a href="https://weforgecode.xyz/Spitfire/" class="icon alt">
2024-08-14 11:55:29 +00:00
<img src="/static/images/icons/brands/git-alt.svg" alt="Forgejo">
2024-08-14 10:43:07 +00:00
<span class="label">Forgejo</span>
</a>
</li>
<li>
<a href="#" class="icon alt">
2024-08-14 11:55:29 +00:00
<img src="/static/images/icons/brands/youtube.svg" alt="YouTube">
2024-08-14 10:43:07 +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 10:43:07 +00:00
</body>
</html>