22 lines
635 B
HTML
22 lines
635 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>{{ title }}</title>
|
||
|
<link rel="shortcut icon" href="/assets/holllo-mark-square.png" type="image/png">
|
||
|
<link rel="stylesheet" href="/scss/modern-normalize.scss">
|
||
|
<link rel="stylesheet" href="/scss/love.scss">
|
||
|
<link rel="stylesheet" href="/scss/common.scss">
|
||
|
{% block head %}{% endblock %}
|
||
|
</head>
|
||
|
|
||
|
<body class="love">
|
||
|
{% block body %}{% endblock %}
|
||
|
<script src="/ts/common.ts" type="module"></script>
|
||
|
</body>
|
||
|
|
||
|
</html>
|