This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/source/experience.html.twig

120 lines
3.9 KiB
Twig
Raw Normal View History

---
layout: default
title: Experience
nav: experience
experiences:
- name: CTI Digital
2016-01-04 01:28:59 +00:00
website: https://www.ctidigital.com
2015-12-02 08:19:36 +00:00
logo: cti-digital.png
role: Lead Drupal Developer
location: Remote
start: November 2015
2015-11-10 07:54:31 +00:00
end: ~
- name: Freelance
location: Remote
role: 'Drupal/PHP Developer & System Administrator'
start: 2007
2015-11-10 07:54:31 +00:00
end: ~
description: >
<p>Working on Drupal and PHP projects in my spare time.</p>
2015-11-10 07:54:31 +00:00
<p>Linux server administration and configuration using Puppet, and more recently, Ansible.</p>
- name: Microserve
website: https://microserve.io
location: Bristol, England
2015-12-02 08:19:36 +00:00
logo: microserve.png
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>
- name: Drupal Association
website: https://assoc.drupal.org
2015-12-02 08:19:36 +00:00
logo: drupal-association.png
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>
2015-11-10 07:31:04 +00:00
<p>Speaking at user groups and DrupalCamps to promote the Drupal Association.</p>
- name: Precedent
website: http://precedent.com
2015-11-10 00:54:09 +00:00
location: Cardiff, Wales
2015-12-02 08:19:36 +00:00
logo: precedent.jpg
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>
- name: Nomensa
website: http://www.nomensa.com
2015-11-10 00:54:09 +00:00
location: Bristol, England
2015-12-02 08:19:36 +00:00
logo: nomensa.png
2015-11-10 07:31:04 +00:00
role: 'Contract Drupal Developer / Application Developer & System Administrator'
start: 2012
end: 2013
description: >
<p>Drupal 7 website development and Linux server administration.</p>
2015-11-10 07:31:04 +00:00
<p>I originally started as a contractor, and later took a staff role.</p>
- name: 'Proctor & Stevenson'
website: http://www.proctors.co.uk
2015-11-10 00:54:09 +00:00
location: Bristol, England
2015-12-02 08:19:36 +00:00
logo: proctors.jpg
2015-11-10 07:31:04 +00:00
role: 'PHP Developer'
start: 2011
end: 2012
description: >
2015-11-10 07:31:04 +00:00
<p>Website development, mainly with Drupal and PHP, including the agencys first Drupal 7 project.</p>
- name: 'Horse & Country TV'
website: http://www.horseandcountry.tv
2015-11-10 00:54:09 +00:00
location: Cwmbran, Wales
2015-12-02 08:19:36 +00:00
logo: horse-and-country.jpg
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 %}
<div class="experience col-md-6">
<h2>{{ experience.name }}</h2>
{% if experience.logo %}
2016-01-11 00:40:53 +00:00
<img class="experience--logo" src="{{ site.images_url }}/assets/images/experience/{{ experience.logo }}" alt="{{ experience.name }} logo">
{% endif %}
{% if experience.website %}
<div>
<a href="{{ experience.website }}">
{{ experience.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 %}