13 lines
508 B
Twig
13 lines
508 B
Twig
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
|
<title>{% if title is defined %}{{ title }} :: {% endif %}{{ globals.siteInfo.name }}</title>
|
|
<link href="/assets/hanyuu.css" type="text/css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
{% block body %}{% endblock %}
|
|
<script src="/assets/hanyuu.js" type="text/javascript"></script>
|
|
</body>
|
|
</html>
|