Archived
1
0
Fork 0
This repository has been archived on 2026-04-03. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
httpcb/app/views/_common/layout.volt

39 lines
1.1 KiB
Text

<!DOCTYPE html>
<html>
<head>
{{ assets.outputCss() }}
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="apple-touch-icon" sizes="180x180" href="{{ url('/apple-touch-icon.png') }}">
<link rel="icon" type="image/png" sizes="32x32" href="{{ url('/favicon-32x32.png') }}">
<link rel="icon" type="image/png" sizes="16x16" href="{{ url('/favicon-16x16.png') }}">
<link rel="manifest" href="{{ url('/site.webmanifest') }}">
<title>HTTP Callback</title>
</head>
<body>
{% block body %}{% endblock %}
<header class="head-section">
<div class="top-section">
{% include "_components/navigation.volt" %}
</div>
{% block masthead %}{% endblock %}
</header>
<main class="content-section">
{% include "_components/flash.volt" %}
{{ content() }}
</main>
<div class="footer-section">
{% include "_components/footer.volt" %}
</div>
{{ assets.outputJs() }}
</body>
</html>