42 lines
1.2 KiB
Twig
42 lines
1.2 KiB
Twig
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>
|
||
|
{% block title %}
|
||
|
{{ title }}
|
||
|
{% endblock %}
|
||
|
</title>
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta name='viewport' content='width=device-width, initial-scale=1.0' />
|
||
|
<meta name="keywords" content="{{ keywords }}") />
|
||
|
<meta name="description" content="{{description}} " />
|
||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
||
|
<meta property="og:image" content="{{image}}" />
|
||
|
<meta name="twitter:image" content="{{image}}" />
|
||
|
<link rel="stylesheet" type="text/css" href="/assets/css/base.css?=adfafd">
|
||
|
</head>
|
||
|
<body>
|
||
|
<header style="background: url({{ background }}) no-repeat center center; background-size: cover">
|
||
|
<nav>
|
||
|
<div class="left">
|
||
|
<a href="/" class="logo-link">
|
||
|
<img id="logo" src="/assets/image/global/the-logo.svg" />
|
||
|
</a>
|
||
|
</div>
|
||
|
<div class="right">
|
||
|
</div>
|
||
|
</nav>
|
||
|
</header>
|
||
|
<div id="main-content" class="container">
|
||
|
{% block mainContent %}{% endblock %}
|
||
|
</div>
|
||
|
|
||
|
<footer>
|
||
|
<div class="inner">
|
||
|
<a href="/archives">Archives</a><br />
|
||
|
© 2020 By Fipamo
|
||
|
</div>
|
||
|
</footer>
|
||
|
<script src="/assets/scripts/start.min.js" type="text/javascript"></script>
|
||
|
</body>
|
||
|
</html>
|