35 lines
764 B
Text
35 lines
764 B
Text
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{{ assets.outputCss() }}
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<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>
|