mince/templates/master.twig

37 lines
1.3 KiB
Twig
Raw Normal View History

2022-07-03 22:07:00 +00:00
<!doctype html>
<html>
<head>
2023-02-25 20:17:06 +00:00
<meta charset="utf-8">
2023-08-16 22:39:35 +00:00
<title>{{ title|default(global.title) }}</title>
2023-02-25 20:55:38 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1">
2023-02-25 20:17:06 +00:00
<link href="/mince.css" type="text/css" rel="stylesheet">
2022-07-03 22:07:00 +00:00
</head>
<body>
<div class="wrapper">
<nav class="header">
<div class="header-inner">
<div class="header-logo">
2023-02-25 20:17:06 +00:00
<a href="/"><img src="/assets/weblogo.png" alt="Flashii Minecraft"></a>
2022-07-03 22:07:00 +00:00
</div>
<div class="header-fat"></div>
<div class="header-user">
2023-08-16 22:39:35 +00:00
{% if auth.success %}
Logged in as {{ auth.username }}
{% else %}
<a href="{{ global.loginUrl }}">Log in</a>
{% endif %}
2022-07-03 22:07:00 +00:00
</div>
</div>
</nav>
<div class="content">
2023-08-16 22:39:35 +00:00
{% block content %}
There is nothing here!
{% endblock %}
2022-07-03 22:07:00 +00:00
</div>
<footer class="footer">
2023-08-16 22:39:35 +00:00
<a href="https://flash.moe">Flashwave</a> 2022-{{ 'now'|date('Y') }} | Site design "borrowed" from pre-Microsoft Mojang | "Minecraft" is a trademark of Mojang
2022-07-03 22:07:00 +00:00
</footer>
</div>
</body>
</html>