redacted.life/index.html

56 lines
1.6 KiB
HTML
Raw Normal View History

2020-01-20 09:10:37 +01:00
<!DOCTYPE html>
<html lang="en">
2020-01-20 21:30:40 +01:00
2020-01-20 09:10:37 +01:00
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ title }} | Redacted Life</title>
2020-01-20 09:10:37 +01:00
<link href="assets/css/index.css" rel="stylesheet" type="text/css">
2020-01-20 22:45:35 +01:00
<link rel="stylesheet" href="assets/plyr/plyr.css" />
2020-01-20 09:10:37 +01:00
</head>
2020-01-20 21:30:40 +01:00
2020-01-20 09:10:37 +01:00
<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>
2020-01-20 09:10:37 +01:00
<div class="top">
2020-01-20 21:06:39 +01:00
<div class="wrapper">
<div class="content">
<h1>Redacted Life</h1>
2020-01-20 22:45:35 +01:00
<div class="player">
<video id="player" poster="{{ thumbnail_src }}" controls>
<source src="{{ video_src }}" type="video/mp4" />
2020-01-20 22:45:35 +01:00
</video>
</div>
<details class="shownotes">
<summary>Show Notes</summary>
{{ show_notes }}
</details>
2020-01-20 21:06:39 +01:00
</div>
</div>
2020-01-20 09:10:37 +01:00
</div>
<div class="bottom">
2020-01-20 21:06:39 +01:00
<div class="wrapper">
<div class="content">
<a class="button" href="feed.xml">Subscribe</a>
2020-01-20 21:06:39 +01:00
<a class="button" href="mailto:hello@redacted.life">Contact</a>
<a class="button" href="archives.html">Archives</a>
2020-01-20 21:06:39 +01:00
</div>
2020-01-20 21:30:40 +01:00
<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>
2020-01-20 21:30:40 +01:00
</footer>
2020-01-20 21:06:39 +01:00
</div>
2020-01-20 09:10:37 +01:00
</div>
2020-01-20 22:45:35 +01:00
<script src="assets/plyr/plyr.js"></script>
<script>
const player = new Plyr("#player", {
iconUrl: "assets/plyr/plyr.svg",
});
</script>
2020-01-20 09:10:37 +01:00
</body>
2020-01-20 21:30:40 +01:00
2020-01-20 09:10:37 +01:00
</html>