From 66148bb245a35ef5d8adc47b85753510bdbfb9db Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Thu, 28 May 2015 17:58:07 +0100 Subject: [PATCH] Move content to partials --- source/_layouts/default.html.twig | 38 ++---------------------------- source/_partials/navbar.html.twig | 22 +++++++++++++++++ source/_partials/sidebar.html.twig | 14 +++++++++++ 3 files changed, 38 insertions(+), 36 deletions(-) create mode 100644 source/_partials/navbar.html.twig create mode 100644 source/_partials/sidebar.html.twig diff --git a/source/_layouts/default.html.twig b/source/_layouts/default.html.twig index 4cd8dac6..403da0ec 100644 --- a/source/_layouts/default.html.twig +++ b/source/_layouts/default.html.twig @@ -23,28 +23,7 @@ {% block styles %}{% endblock %} - + {% include 'navbar' %}
@@ -54,20 +33,7 @@ {% endblock %}
-
-
-

Drupal Association

- - Drupal Association Individual Member - -
- -
-

DrupalCon LA

- - -
-
+ {% include 'sidebar' %}
{# .row #} {# .container #} diff --git a/source/_partials/navbar.html.twig b/source/_partials/navbar.html.twig new file mode 100644 index 00000000..7f62aa81 --- /dev/null +++ b/source/_partials/navbar.html.twig @@ -0,0 +1,22 @@ + \ No newline at end of file diff --git a/source/_partials/sidebar.html.twig b/source/_partials/sidebar.html.twig new file mode 100644 index 00000000..2dde6d28 --- /dev/null +++ b/source/_partials/sidebar.html.twig @@ -0,0 +1,14 @@ +
+
+

Drupal Association

+ + Drupal Association Individual Member + +
+ +
+

DrupalCon LA

+ + +
+
\ No newline at end of file