misuzu/templates/master_minimal.twig

51 lines
1.9 KiB
Twig
Raw Normal View History

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ title|default(globals.site_name) }}</title>
<link href="{{ '/css/libraries.css'|asset_url }}" rel="stylesheet">
<link href="{{ '/css/style.css'|asset_url }}" rel="stylesheet">
</head>
<body class="main">
<nav class="header">
<div class="header__background"></div>
<div class="header__desktop">
<a class="header__desktop__logo" href="{{ url('index') }}" title="{{ globals.site_name }}">
{{ globals.site_name }}
</a>
</div>
<div class="header__mobile">
<div class="header__mobile__icons">
<a class="header__mobile__logo header__mobile__icon" href="{{ url('index') }}">
{{ globals.site_name }}
</a>
</div>
</div>
</nav>
<div class="main__wrapper">
{% block content %}
This page has no content!
{% endblock %}
</div>
<footer class="footer">
<div class="footer__background"></div>
<div class="footer__wrapper">
{% autoescape false %}
<div class="footer__copyright">
{{ 'https://flash.moe'|html_link('Flashwave', 'footer__link') }} 2013-{{
''|date('Y') }} /
{{ ('https://github.com/flashwave/misuzu/tree/' ~ git_tag())|html_link(git_tag(), 'footer__link') }}
# {{ ('https://github.com/flashwave/misuzu/commit/' ~ git_commit_hash(true))|html_link(git_commit_hash(), 'footer__link') }}
</div>
{% endautoescape %}
</div>
</footer>
</body>
</html>