14 lines
483 B
Twig
14 lines
483 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="{{ asset('oauth2.css') }}" rel="stylesheet">
|
||
|
</head>
|
||
|
<body>
|
||
|
{% block body %}{% endblock %}
|
||
|
<script src="{{ asset('oauth2.js') }}"></script>
|
||
|
</body>
|
||
|
</html>
|