83 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			83 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
 | 
						|
<head>
 | 
						|
	<meta charset="UTF-8">
 | 
						|
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
 | 
						|
	<meta http-equiv="X-UA-Compatible" content="IE=edge">
 | 
						|
	<title>{% block title %}{{ title }} | Redacted Life{% endblock %}</title>
 | 
						|
	<link href="assets/css/index.css" rel="stylesheet" type="text/css">
 | 
						|
	<link rel="stylesheet" href="assets/plyr/plyr.css" />
 | 
						|
 | 
						|
	<!-- Metadata -->
 | 
						|
	<meta name="description" content="An audiocast on Linux and libre software with a hard spin on personal privacy and security">
 | 
						|
	<link rel="canonical" href="https://redacted.life/">
 | 
						|
	<link rel="me" href="https://masto.nixnet.xyz/@amolith">
 | 
						|
	<link rel="me" href="https://masto.nixnet.xyz/@RedactedLife">
 | 
						|
	{% block stylesheets %}{% endblock %}
 | 
						|
 | 
						|
	<!-- Social: Twitter -->
 | 
						|
	<meta name="twitter:card" content="summary_large_image" />
 | 
						|
	<meta name="twitter:title" content="Redacted Life" />
 | 
						|
	<meta name="twitter:description" content="An audiocast on Linux and libre software with a hard spin on personal privacy and security" />
 | 
						|
	<meta name="twitter:image" content="/assets/media/cover-site.png" />
 | 
						|
 | 
						|
	<!-- Social: OpenGraph -->
 | 
						|
	<meta property="og:locale" content="en_US">
 | 
						|
	<meta property="og:type" content="article">
 | 
						|
	<meta property="og:title" content="Redacted Life">
 | 
						|
	<meta property="og:description" content="An audiocast on Linux and libre software with a hard spin on personal privacy and security">
 | 
						|
	<meta property="og:url" content="https://redacted.life">
 | 
						|
	<meta property="og:site_name" content="Redacted Life">
 | 
						|
	<meta property="og:image" content="/assets/media/cover-site.png" />
 | 
						|
 | 
						|
	<!-- Favicons -->
 | 
						|
	<link rel="apple-touch-icon" sizes="180x180" href="/assets/favicons/apple-touch-icon.png">
 | 
						|
	<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicons/favicon-32x32.png">
 | 
						|
	<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicons/favicon-16x16.png">
 | 
						|
	<link rel="manifest" href="/assets/favicons/site.webmanifest">
 | 
						|
	<link rel="mask-icon" href="/assets/favicons/safari-pinned-tab.svg" color="#46ad83">
 | 
						|
	<link rel="shortcut icon" href="/assets/favicons/favicon.ico">
 | 
						|
	<meta name="msapplication-TileColor" content="#2b5797">
 | 
						|
	<meta name="msapplication-config" content="/assets/favicons/browserconfig.xml">
 | 
						|
	<meta name="theme-color" content="#ffffff">
 | 
						|
</head>
 | 
						|
 | 
						|
<body>
 | 
						|
	<img src="assets/images/cloud.svg" class="clouds" id="cloud1" />
 | 
						|
	<img src="assets/images/cloud.svg" class="clouds" id="cloud2" />
 | 
						|
	<div class="top_bg"></div>
 | 
						|
	<div class="bottom_bg"></div>
 | 
						|
	<div class="top">
 | 
						|
		<div class="wrapper">
 | 
						|
			<div class="content">
 | 
						|
				<h1><a href=".">Redacted Life</a></h1>
 | 
						|
				{% block left_content %}
 | 
						|
				{% endblock %}
 | 
						|
			</div>
 | 
						|
		</div>
 | 
						|
	</div>
 | 
						|
	<div class="bottom">
 | 
						|
		<div class="wrapper">
 | 
						|
			<div class="content">
 | 
						|
				<a class="button" href="subscribe.html">Subscribe</a>
 | 
						|
				<a class="button" href="mailto:hello@redacted.life">Contact</a>
 | 
						|
				<a class="button" href="archives.html">Archives</a>
 | 
						|
			</div>
 | 
						|
			<footer>
 | 
						|
				Designed by <a href="https://webionite.com">Ceda EI</a><br />
 | 
						|
				Source available on <a href="https://git.webionite.com/ceda_ei/redacted.life">Webionite</a><br />
 | 
						|
				Licensed under <a href="https://git.webionite.com/ceda_ei/redacted.life/src/branch/master/LICENSE">MIT</a>
 | 
						|
			</footer>
 | 
						|
		</div>
 | 
						|
	</div>
 | 
						|
	<script src="assets/plyr/plyr.js"></script>
 | 
						|
	<script>
 | 
						|
const player = new Plyr("#player", {
 | 
						|
	iconUrl: "assets/plyr/plyr.svg",
 | 
						|
});
 | 
						|
	</script>
 | 
						|
</body>
 | 
						|
 | 
						|
</html>
 |