diff --git a/app/config/sculpin_site.yml b/app/config/sculpin_site.yml
index 5ffede4f..22f93dd7 100644
--- a/app/config/sculpin_site.yml
+++ b/app/config/sculpin_site.yml
@@ -207,48 +207,6 @@ latest_posts: 5
linkedin:
url: http://uk.linkedin.com/in/opdavies
-meetups:
- - name: Drupal Bristol
- logo: drupal-bristol.jpeg
- url: 'http://www.drupalbristol.org.uk'
-
- - name: DrupalCamp Bristol
- logo: drupalcamp-bristol.png
- url: 'http://www.drupalcampbristol.co.uk'
-
- - name: PHPSW
- logo: phpsw.jpeg
- url: 'http://phpsw.uk'
-
-navigation:
- - title: About
- href: '/'
- pattern: '^/.$'
-
- - title: Experience
- href: '/experience'
- pattern: '^/experience/?$'
-
- - title: Talks
- href: '/talks'
- pattern: '^/talks/?'
-
- - title: 'Open Source'
- href: '/opensource'
- pattern: '^/opensource/?$'
-
- - title: Blog
- href: '/blog'
- pattern: '^/blog/?'
-
- - title: Book
- href: '/test-driven-drupal'
- pattern: '^/test-driven-drupal/?'
-
- - title: Contact
- href: '/contact'
- pattern: '^/contact/?'
-
packagist:
name: opdavies
url: https://packagist.org/users/opdavies
diff --git a/source/_layouts/default.html.twig b/source/_layouts/default.html.twig
index ef095ae6..e3387394 100644
--- a/source/_layouts/default.html.twig
+++ b/source/_layouts/default.html.twig
@@ -49,13 +49,47 @@
@@ -88,14 +122,24 @@
Things that I organise
-
- {% for meetup in site.meetups %}
- -
-
-
-
-
- {% endfor %}
+
+ {% include 'meetup.html.twig' with {
+ name: 'Drupal Bristol',
+ logo: 'drupal-bristol.jpeg',
+ url: 'http://www.drupalbristol.org.uk',
+ } %}
+
+ {% include 'meetup.html.twig' with {
+ name: 'DrupalCamp Bristol',
+ logo: 'drupalcamp-bristol.png',
+ url: 'http://www.drupalcampbristol.co.uk',
+ } %}
+
+ {% include 'meetup.html.twig' with {
+ name: 'PHPSW',
+ logo: 'phpsw.jpeg',
+ url: 'http://phpsw.uk',
+ } %}
diff --git a/source/_partials/meetup.html.twig b/source/_partials/meetup.html.twig
new file mode 100644
index 00000000..b5aad165
--- /dev/null
+++ b/source/_partials/meetup.html.twig
@@ -0,0 +1,10 @@
+
+
+
+
+
diff --git a/source/_partials/nav-item.html.twig b/source/_partials/nav-item.html.twig
new file mode 100644
index 00000000..0c04bc80
--- /dev/null
+++ b/source/_partials/nav-item.html.twig
@@ -0,0 +1,10 @@
+{% set classes = [
+ '-mx-4 p-4 md:border-b-2 md:border-transparent md:ml-4 md:mr-0 md:p-0',
+ loop.first ? 'border-t border-grey-lighter md:border-t-0 md:border-transparent',
+ page.url matches '#' ~ pattern ~ '#' ? 'md:bg-transparent md:border-blue',
+] %}
+
+
+ {{- title -}}
+
+