35 lines
No EOL
1.6 KiB
Text
35 lines
No EOL
1.6 KiB
Text
<!DOCTYPE html>
|
|
<html lang="{{ langKey }}">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Adrian Victor{% if pageTitle or postTitle %} - {{pageTitle or postTitle}}{% endif %}</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="/static/main.css?fixcache=1">
|
|
<script src="/static/scripts/ccd.js"></script>
|
|
<script src="/static/scripts/main.js" defer></script>
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/static/apple-touch-icon.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/static/favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/static/favicon-16x16.png">
|
|
<link rel="manifest" href="/static/site.webmanifest">
|
|
<script src="https://keepandroidopen.org/banner.js" defer></script>
|
|
<meta property="og:title" content="Adrian Victor{% if pageTitle or postTitle %} - {{ pageTitle or postTitle }}{% endif %}">
|
|
<meta property="og:description" content="{{ description or i18n[langKey].websiteDescription }}">
|
|
<meta property="og:type" content="article">
|
|
<meta property="og:url" content="{{ page.url | url | absoluteUrl }}">
|
|
<meta property="og:image" content="{{ ('/static/images/' ~ (background or 'bear.jpg')) | absoluteUrl }}">
|
|
</head>
|
|
<body>
|
|
<style>
|
|
.bg {
|
|
opacity: {{ backgroundOpacity or ".4" }}!important;
|
|
}
|
|
</style>
|
|
<div id="everythingHelper">
|
|
<img src="/static/images/{{ background or "bear.jpg" }}" class="bg">
|
|
{% include "header.njk" %}
|
|
<div id="mainHelper">
|
|
{{ content | safe }}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |