Archived
1
0
Fork 0

initial commit

This commit is contained in:
Henrik Hautakoski 2017-09-01 17:10:27 +02:00
commit e869a1cab4
107 changed files with 9029 additions and 0 deletions

35
app/views/layout.volt Normal file
View file

@ -0,0 +1,35 @@
<!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 "_templates/navigation.volt" %}
</div>
{% block masthead %}{% endblock %}
</header>
<main class="content-section">
{% include "_templates/flash.volt" %}
{{ content() }}
</main>
<div class="footer-section">
{% include "_templates/footer.volt" %}
</div>
{{ assets.outputJs() }}
</body>
</html>