45 lines
2.5 KiB
Twig
45 lines
2.5 KiB
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>Flashii</title>
|
|
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
|
|
<link href="https://fonts.googleapis.com/css?family=Exo+2:200,200italic,300,300italic,400,400italic" rel="stylesheet" type="text/css">
|
|
<link href="/css/libraries.css" rel="stylesheet" type="text/css" data-turbolinks-track>
|
|
<link href="/css/nova.css" rel="stylesheet" type="text/css" data-turbolinks-track>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<nav class="header">
|
|
<div class="header__inner">
|
|
</div>
|
|
</nav>
|
|
|
|
<div class="container__wrapper {{ wrapper_classes|default('') }}">
|
|
<noscript>
|
|
<div class="banner" style="background-image: url('https://static.flash.moe/images/enable-javascript.png')"></div>
|
|
</noscript>
|
|
|
|
<div class="banner {{ banner_large is defined and banner_large ? 'banner--large' : '' }} {{ banner_classes|default('') }}" style="background-image: url('{{ banner|default('https://static.flash.moe/images/default-banner.png') }}')">
|
|
{{ block('banner_content') is defined ? block('banner_content') : '' }}
|
|
</div>
|
|
|
|
{{ block('content') is defined ? block('content') : '' }}
|
|
</div>
|
|
|
|
<div class="container__footer">
|
|
<div class="container__footer-copyright">
|
|
<a href="https://flash.moe" class="container__footer-link">flash.moe 2013-{{ ''|date('Y') }}</a> |
|
|
<a href="https://github.com/flashwave/misuzu/tree/{{ git_branch() }}" class="container__footer-link">{{ git_branch() }}</a>#<a href="https://github.com/flashwave/misuzu/commit/{{ git_hash(true) }}" class="container__footer-link">{{ git_hash() }}</a>
|
|
</div>
|
|
{#<div class="container__footer-links">
|
|
<a href="#" class="container__footer-link">Terms of Service</a>
|
|
<a href="#" class="container__footer-link">Rules</a>
|
|
<a href="#" class="container__footer-link">Contact</a>
|
|
<a href="#" class="container__footer-link">Status</a>
|
|
</div>#}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|