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

114 lines
4.4 KiB
Twig
Raw Normal View History

---
layout: default
title: Experience
experiences:
2016-05-19 11:28:00 +00:00
- company: appnovation
location: Caerphilly, Wales
role: Senior Drupal Developer
start: May 2016
2016-05-27 18:49:41 +00:00
end: ~
2016-05-28 08:29:47 +00:00
description: |
<p>Drupal website development.</p>
2016-05-19 11:28:00 +00:00
- company: freelance
location: Remote
2016-06-24 00:36:40 +00:00
role: 'Web Developer & System Administrator'
start: 2007
2015-11-10 07:54:31 +00:00
end: ~
2016-02-10 18:47:11 +00:00
description: |
<p>Working on Drupal and Symfony development, maintenance and support projects in my spare time.</p>
<p>Administration of Debian, Ubuntu and CentOS servers, and configuration using Puppet, or more recently, Ansible.</p>
2016-05-16 20:00:52 +00:00
- company: cti
role: Lead Drupal Developer
location: Remote
start: November 2015
end: May 2016
description: |
<p>Working on various Drupal 7 projects for clients including Greater London Authority (http://www.london.gov.uk), British Land and British Council, as well as various retainer contracts.</p>
<p>Working on internal Drupal 8 learning initiatives, focussing on custom module development and data migration.</p>
<p>Initial development of a CLI application for generating new and auditing existing codebases to ensure consistency across projects. This uses various Symfony components - mainly the Console and Filesystem components.</p>
- company: microserve
location: Bristol, England
role: Senior Drupal Developer
start: July 2015
end: November 2015
2016-02-10 18:47:11 +00:00
description: |
<p>Full-stack Drupal development, focussing on data migration.</p>
2016-02-10 18:47:11 +00:00
<p>Lead Developer of the <a href="http://road.cc">road.cc</a> rebuild project onto Drupal 7, including working with non-Drupal PHP applications and utilising of Symfony components, and interacting with Drupal via REST.</p>
<p>Community and contribution advocate.</p>
- company: drupal_association
role: Drupal.org Developer
location: Remote
start: 2014
end: July 2015
2016-02-10 18:47:11 +00:00
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>
- company: precedent
2015-11-10 00:54:09 +00:00
location: Cardiff, Wales
role: Senior Drupal Developer
start: 2013
end: 2014
2016-02-10 18:47:11 +00:00
description: |
<p>Drupal 7 website development, including site building, theming, module development, data migration and server configuration.</p>
- company: nomensa
2015-11-10 00:54:09 +00:00
location: Bristol, England
2015-11-10 07:31:04 +00:00
role: 'Contract Drupal Developer / Application Developer & System Administrator'
start: 2012
end: 2013
2016-02-10 18:47:11 +00:00
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>
- company: proctors
2015-11-10 00:54:09 +00:00
location: Bristol, England
2015-11-10 07:31:04 +00:00
role: 'PHP Developer'
start: 2011
end: 2012
2016-02-10 18:47:11 +00:00
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>
- company: horse_country
2015-11-10 00:54:09 +00:00
location: Cwmbran, Wales
role: Web Developer
start: 2010
end: 2011
2016-02-10 18:47:11 +00:00
description: |
<p>Maintaining and adding new features to the Horse & Country TV website (Drupal 6).</p>
---
<h1>Experience</h1>
2016-03-17 09:15:01 +00:00
{% for experience in page.experiences %}
2016-05-27 18:49:41 +00:00
{% set company = site.companies[experience.company] %}
<div class="experience experience--{{ company.logo ? 'with-logo' : 'no-logo' }}">
2016-06-07 07:24:29 +00:00
<h2 class="experience__title">{{ company.name }}</h2>
2016-04-19 00:05:11 +00:00
2016-05-27 18:49:41 +00:00
{% if company.website %}
<a href="{{ company.website }}" class="experience__website">{{ company.website }}</a>
{% endif %}
2016-02-10 18:47:11 +00:00
2016-05-27 18:49:41 +00:00
{% if company.logo %}
2016-06-07 07:24:29 +00:00
<img class="experience__logo" src="{{ site.images_url }}/assets/images/experience/{{ company.logo }}" alt="{{ company.name }} logo">
2016-05-27 18:49:41 +00:00
{% endif %}
2016-05-27 18:49:41 +00:00
<div class="experience__role">
{% spaceless %}
{{ experience.role ~ ' from ' ~ experience.start ~ ' to ' ~ experience.end|default('Present') }}
{% if experience.location %}
({{ experience.location }})
{% endif %}
{% endspaceless %}.
</div>
2016-05-27 18:49:41 +00:00
<div class="experience__description">
{{ experience.description|raw }}
</div>
</div>
{% endfor %}