Archived
1
0
Fork 0

Make the application modular to have a "main" and "backend" part.

This commit is contained in:
Henrik Hautakoski 2018-10-09 22:26:01 +02:00
parent 884f721002
commit e5b0e1fcfd
No known key found for this signature in database
GPG key ID: 839F3A7EAFAEAFAA
28 changed files with 112 additions and 7 deletions

View file

@ -12,7 +12,7 @@
<header class="head-section">
<div class="top-section">
{% include "_templates/navigation.volt" %}
{% include "_components/navigation.volt" %}
</div>
{% block masthead %}{% endblock %}
@ -20,14 +20,14 @@
<main class="content-section">
{% include "_templates/flash.volt" %}
{% include "_components/flash.volt" %}
{{ content() }}
</main>
<div class="footer-section">
{% include "_templates/footer.volt" %}
{% include "_components/footer.volt" %}
</div>
{{ assets.outputJs() }}

View file

@ -0,0 +1,2 @@
<h1>Backend</h1>