2022-05-12 13:29:25 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<title>{{ title }}</title>
|
|
|
|
|
|
|
|
<meta property="og:title" content="{{ title }}" />
|
|
|
|
<meta property="og:description" content="{{ description }}" />
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="viewport"
|
|
|
|
content="width=device-width, initial-scale=1.0, maximum-scale=1" />
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="assets/css/index.css" />
|
2022-05-14 15:23:19 +00:00
|
|
|
<link rel="stylesheet" href="{{ page_assets }}/css/main.css" />
|
2022-05-12 13:29:25 +00:00
|
|
|
|
|
|
|
<!-- Mastodon -->
|
|
|
|
<link rel="me" href="https://{{ mastodon_instance_url }}/{{ mastodon_handle }}" />
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="horizontal-center">
|
2022-05-31 18:17:47 +00:00
|
|
|
<div class="vertical header">
|
|
|
|
<div id="header" class="horizontal">
|
2022-05-31 18:28:01 +00:00
|
|
|
<img class="avatar" src="{{ page_assets }}/img/avatar.jpg" />
|
2022-05-12 13:29:25 +00:00
|
|
|
|
|
|
|
<div class="vertical-center">
|
|
|
|
<span class="name-title">Alexander "PapaTutuWawa"</span>
|
|
|
|
|
|
|
|
<div id="header-links">
|
|
|
|
<ul>
|
|
|
|
<li><a href="index.html">Home</a></li>
|
|
|
|
<li><a href="https://{{ blog_url }}">Blog</a></li>
|
|
|
|
<li><a href="code.html">Code</a></li>
|
|
|
|
<li><a href="contact.html">Contact</a></li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{ content }}
|
2022-05-31 18:17:47 +00:00
|
|
|
|
|
|
|
<br />
|
|
|
|
|
|
|
|
<center class="footer">
|
|
|
|
Created by <i>PapaTutuWawa</i> with <3 using
|
|
|
|
<a href="https://github.com/google/roboto">Roboto</a>,
|
|
|
|
<a href="https://github.com/RedHatOfficial/Overpass">Overpass</a> and
|
|
|
|
<a href="https://github.com/sunainapai/makesite">makesite</a>
|
|
|
|
</center>
|
2022-05-12 13:29:25 +00:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|