diff --git a/templates/emails/mail.twig b/resources/views/emails/mail.twig
similarity index 100%
rename from templates/emails/mail.twig
rename to resources/views/emails/mail.twig
diff --git a/templates/layouts/parts/footer.twig b/templates/layouts/parts/footer.twig
deleted file mode 100644
index cf201281..00000000
--- a/templates/layouts/parts/footer.twig
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-
diff --git a/templates/layouts/parts/navbar.twig b/templates/layouts/parts/navbar.twig
deleted file mode 100644
index a718fc48..00000000
--- a/templates/layouts/parts/navbar.twig
+++ /dev/null
@@ -1,74 +0,0 @@
-{% import _self as elements %}
-
-{% macro toolbar_item(label, link, active_page, icon) %}
-
-
- {% if icon %}{% endif %}
- {{ label|raw }}
-
-
-{% endmacro %}
-
-
-
- {% block navbar %}
-
-
- {% block menu %}
-
- {% block menu_items %}
- {{ menu() }}
- {% endblock %}
-
- {% block menu_toolbar %}
-
-
- {% if is_user() %}
- {{ elements.toolbar_item(menuUserShiftState(user), url('shifts', {'action': 'next'}), '', 'glyphicon-time') }}
- {% elseif has_permission_to('register') and config('registration_enabled') %}
- {{ elements.toolbar_item(__('Register'), url('register'), 'register', 'glyphicon-plus') }}
- {% endif %}
-
- {% if has_permission_to('login') %}
- {{ elements.toolbar_item(__('Login'), url('login'), 'login', 'glyphicon-log-in') }}
- {% endif %}
-
- {% if is_user() and has_permission_to('user_messages') %}
- {{ elements.toolbar_item(menuUserMessages(), url('user-messages'), 'user-messages', 'glyphicon-envelope') }}
- {% endif %}
-
- {{ menuUserHints() }}
-
- {% if has_permission_to('user_myshifts') %}
- {{ elements.toolbar_item(user.Nick, url('users', {'action': 'view'}), 'users', 'icon-icon_angel') }}
- {% endif %}
-
- {% if has_permission_to('user_settings') or has_permission_to('logout') %}
- -
-
-
-
-
-
- {% endif %}
-
-
- {% endblock %}
-
- {% endblock %}
- {% endblock %}
-
-