website/layout/page.html

35 lines
1.3 KiB
HTML
Raw Normal View History

2023-07-17 15:01:11 +00:00
<!doctype html>
<html>
2023-07-22 19:09:19 +00:00
<head>
2023-07-17 15:01:11 +00:00
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="/assets/css/index.css" rel="stylesheet" />
2023-07-22 19:09:19 +00:00
<link rel="shortcut icon" href="/assets/img/favicon.ico" sizes="32x32" />
<link href="/feed.xml" type="application/atom+xml" rel="alternate" title="Moxxy Blog" />
2022-05-12 13:29:25 +00:00
2023-07-22 19:09:19 +00:00
<meta property="og:title" content="{{ title }}" />
<meta property="og:description" content="{{ description }}" />
2022-05-12 13:29:25 +00:00
2023-07-22 19:09:19 +00:00
<title>{{ title }}</title>
</head>
<body>
<div class="flex flex-col p-2 md:p-8 items-start md:w-4/5 mx-auto">
<!-- Header -->
<div class="flex flex-row self-center">
<img class="w-12 h-12 md:w-24 md:h-24 rounded-lg" src="{{ page_assets }}/img/avatar.jpg" alt="Profile picture"/>
<div class="ml-4 self-center">
<a class="self-center text-2xl font-bold" href="/">PapaTutuWawa's Website</a>
2023-07-22 19:09:19 +00:00
<ul class="list-none">
<li class="inline mr-8"><a href="https://blog.polynom.me">Blog</a></li>
<li class="inline mr-8"><a href="/code.html">Code</a></li>
<li class="inline mr-8"><a href="/contact.html">Contact</a></li>
</ul>
2023-07-17 15:01:11 +00:00
</div>
2023-07-22 19:09:19 +00:00
</div>
2023-07-22 19:09:19 +00:00
{{ content }}
2022-05-12 13:29:25 +00:00
</div>
2023-07-22 19:09:19 +00:00
</body>
</html>