website/layout/page.html

52 lines
1.5 KiB
HTML
Raw Normal View History

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-06-01 10:33:24 +00:00
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">
<div class="vertical header">
<div id="header" class="horizontal">
2022-06-01 10:33:24 +00:00
<img class="avatar" src="{{ page_assets }}/img/avatar.jpg" alt="" />
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 }}
<br />
2022-06-01 10:33:24 +00:00
<div class="horizontal-center footer">
Created by <i>PapaTutuWawa</i> with &lt;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>
2022-06-01 10:33:24 +00:00
</div>
</div>
2022-05-12 13:29:25 +00:00
</div>
</body>
</html>