2019-02-05 13:39:22 +00:00
|
|
|
<!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 %}
|
2019-04-10 09:31:24 +00:00
|
|
|
{% set git_tag = git_tag() %}
|
|
|
|
{% set git_branch = git_branch() %}
|
2019-02-05 13:39:22 +00:00
|
|
|
<div class="footer__copyright">
|
|
|
|
{{ 'https://flash.moe'|html_link('Flashwave', 'footer__link') }} 2013-{{
|
|
|
|
''|date('Y') }} /
|
2019-04-10 09:31:24 +00:00
|
|
|
{{ ('https://github.com/flashwave/misuzu/tree/' ~ git_tag)|html_link(git_tag, 'footer__link') }}
|
2019-02-05 13:39:22 +00:00
|
|
|
# {{ ('https://github.com/flashwave/misuzu/commit/' ~ git_commit_hash(true))|html_link(git_commit_hash(), 'footer__link') }}
|
2019-04-10 21:54:50 +00:00
|
|
|
{% if git_branch != 'HEAD' %}
|
2019-04-10 09:31:24 +00:00
|
|
|
({{ ('https://github.com/flashwave/misuzu/tree/' ~ git_branch)|html_link(git_branch, 'footer__link') }})
|
|
|
|
{% endif %}
|
2019-02-05 13:39:22 +00:00
|
|
|
</div>
|
|
|
|
{% endautoescape %}
|
|
|
|
</div>
|
|
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
</html>
|