---
layout: default
title: Experience
nav: experience
experiences:
    - company: cti
      role: Lead Drupal Developer
      location: Remote
      start: November 2015
      end: ~

    - company: freelance
      location: Remote
      role: 'Drupal/PHP Developer & System Administrator'
      start: 2007
      end: ~
      description: >
          <p>Working on Drupal and PHP projects in my spare time.</p>
          <p>Linux server administration and configuration using Puppet, and more recently, Ansible.</p>

    - company: microserve
      location: Bristol, England
      role: Senior Drupal Developer
      start: July 2015
      end: November 2015
      description: >
          <p>Full-stack Drupal development, focussing on data migration.</p>
          <p>Community and contribution advocate.</p>

    - company: drupal_association
      role: Drupal.org Developer
      location: Remote
      start: 2014
      end: July 2015
      description: >
          <p>Maintaining and improving Drupal.org - the home of the Drupal community.</p>
          <p>Speaking at user groups and DrupalCamps to promote the Drupal Association.</p>

    - company: precedent
      location: Cardiff, Wales
      role: Senior Drupal Developer
      start: 2013
      end: 2014
      description: >
          <p>Drupal 7 website development, including site building, theming, module development, data migration and server configuration.</p>

    - company: nomensa
      location: Bristol, England
      role: 'Contract Drupal Developer / Application Developer & System Administrator'
      start: 2012
      end: 2013
      description: >
          <p>Drupal 7 website development and Linux server administration.</p>
          <p>I originally started as a contractor, and later took a staff role.</p>

    - company: proctors
      location: Bristol, England
      role: 'PHP Developer'
      start: 2011
      end: 2012
      description: >
          <p>Website development, mainly with Drupal and PHP, including the agency’s first Drupal 7 project.</p>

    - company: horse_country
      location: Cwmbran, Wales
      role: Web Developer
      start: 2010
      end: 2011
      description: >
          <p>Maintaining and adding new features to the Horse & Country TV website (Drupal 6).</p>
---
<h1>Experience</h1>

{% for experiences in page.experiences|batch(2) %}
    <div class="row">
        {% for experience in experiences %}
            {% set company = site.companies[experience.company] %}

            <div class="experience col-md-6">
                <h2>{{ company.title }}</h2>

                {% if company.logo %}
                    <img class="experience--logo" src="{{ site.images_url }}/assets/images/experience/{{ company.logo }}" alt="{{ company.title }} logo">
                {% endif %}

                {% if company.website %}
                    <div>
                        <a href="{{ company.website }}">
                            {{ company.website }}
                        </a>
                    </div>
                {% endif %}

                <div class="role-wrapper">
                    {% spaceless %}
                        {{ experience.role ~ ' from ' ~ experience.start ~ ' to ' ~ experience.end|default('Present') }}
                        {% if experience.location %}
                            ({{ experience.location }})
                        {% endif %}
                    {% endspaceless %}.
                </div>

                {{ experience.description|raw }}
            </div>
        {% endfor %}
    </div>
{% endfor %}