23 lines
545 B
HTML
23 lines
545 B
HTML
{% import "macros/macros.html" as post_macros %}
|
|
{% import "macros/prev.html" as prev_macros %}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>kasperhermansen</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
|
|
|
|
<link rel="stylesheet" href="{{ get_url(path="styles/styles.css") | safe }}" />
|
|
</head>
|
|
|
|
<body>
|
|
<section class="section container mx-auto">
|
|
{% block content %} {% endblock %}
|
|
</section>
|
|
</body>
|
|
|
|
</html>
|