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

167 lines
5.9 KiB
Twig
Raw Normal View History

2017-07-11 00:08:32 +00:00
---
2018-10-05 23:23:35 +00:00
layout: default
2017-07-11 00:08:32 +00:00
title: Experience
use: [posts]
2017-10-27 19:10:18 +00:00
experiences:
- company: horse_country
location: Cwmbran, Wales
role: Web Developer
start: 2010
end: 2011
description: |
Maintaining and adding new features to the Horse & Country TV website (Drupal 6).
- company: proctors
location: Bristol, England
role: 'PHP Developer'
start: 2011
end: 2012
description: |
Website development, mainly with Drupal and PHP, including the agencys first Drupal 7 project.
- company: nomensa
location: Bristol, England
role: 'Contract Drupal Developer / Application Developer & System Administrator'
start: 2012
end: 2013
description: |
Drupal 7 website development and Linux server administration.
I originally started as a contractor, and later took a staff role.
- company: precedent
location: Cardiff, Wales
role: Senior Drupal Developer
start: 2013
end: 2014
description: |
Drupal 7 website development, including site building, theming, module development, data migration and server configuration.
- company: drupal_association
role: Drupal.org Developer
location: Remote
start: 2014
end: July 2015
description: |
Maintaining and improving Drupal.org - the home of the Drupal community.
Speaking at user groups and DrupalCamps to promote the Drupal Association.
- company: microserve
location: Bristol, England
role: Senior Drupal Developer
start: July 2015
end: November 2015
description: |
Full-stack Drupal development, focussing on data migration.
Lead Developer of the [road.cc](http://road.cc) rebuild project onto Drupal 7, including working with non-Drupal PHP applications and utilising of Symfony components, and interacting with Drupal via REST.
Community and contribution advocate.
- company: cti
role: Lead Drupal Developer
location: Remote
start: November 2015
end: May 2016
description: |
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.
Working on internal Drupal 8 learning initiatives, focussing on custom module development and data migration.
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.
- company: appnovation
location: Cardiff, Wales
role: Senior Drupal Developer
start: May 2016
end: March 2017
description: |
Drupal 7 and 8 site building, custom module development and theming.
Part of various pre-sales teams, including the companys first UK Drupal 8 project and first FTSE 100 client.
2018-05-14 15:15:51 +00:00
- company: develop_me
location: Bristol, UK
role: Coding Fellowship Mentor
start: May 2018
end: ~
2017-10-27 19:10:18 +00:00
- company: freelance
location: Remote
role: 'Web Developer & System Administrator'
start: 2007
end: ~
featured: true
description: |
Working on Drupal and Symfony development, maintenance and support projects in my spare time.
Administration of Debian, Ubuntu and CentOS servers, and configuration using Puppet, or more recently, Ansible.
- company: microserve
location: Bristol, England
role: Senior Drupal Developer
start: March 2017
end: ~
description: |
Drupal 8 site building, custom module development, theming, data migrations.
Drupal 7 site building, custom module development, theming.
First Acquia certified Drupal 8 Developer and back-end specialist.
2017-07-11 00:08:32 +00:00
---
2018-10-09 23:09:11 +00:00
{% macro roleText(experience) %}
{{- experience.role }} from {{ experience.start }} to {{ experience.end|default('Present') -}}
{%- if experience.location %} ({{ experience.location }}){% endif %}.
{% endmacro %}
{% macro companyUrl(site, company) %}
{{ company.url ~ '?utm_source=' ~ site.short_url ~ '&utm_medium=experience' }}
{% endmacro %}
{% macro companyLogoUrl(company) %}
{{- '/images/experience/' ~ company.logo -}}
{% endmacro %}
2017-07-11 00:08:32 +00:00
{% block content %}
2018-10-09 23:09:11 +00:00
{% import _self as helpers %}
2017-11-09 22:44:30 +00:00
<div class="listing">
{% for experience in page.experiences|reverse %}
{% set company = site.companies[experience.company] %}
2018-10-09 22:54:23 +00:00
<div class="mb-16">
<div class="flex flex-row justify-between">
<div>
<h2 class="mb-0">{{ company.name }}</h2>
<div class="mb-4">
{% if company.url -%}
2018-10-09 23:09:11 +00:00
<a class="inline-block text-blue mb-1" href="{{ helpers.companyUrl(site, company) }}">
2018-10-09 22:54:23 +00:00
{{- company.url -}}
</a>
{%- endif %}
<div class="text-grey-dark">
2018-10-09 23:09:11 +00:00
{{ helpers.roleText(experience) }}
2018-10-09 22:54:23 +00:00
</div>
2017-11-09 22:44:30 +00:00
</div>
2018-10-09 22:54:23 +00:00
{% if experience.description %}
<div class="markdown">
{{ experience.description|markdown }}
</div>
{% endif %}
2017-07-11 00:08:32 +00:00
</div>
2018-10-09 22:54:23 +00:00
{% if company.logo %}
<div class="flex-none mt-2 mb-4 ml-4 w-16 sm:w-24 lg:w-32">
2018-10-09 23:09:11 +00:00
<img src="{{ helpers.companyLogoUrl(company) }}" alt="{{ company.name }} logo">
2017-11-09 22:44:30 +00:00
</div>
{% endif %}
2018-05-09 12:58:34 +00:00
</div>
2017-11-09 22:44:30 +00:00
</div>
{% endfor %}
</div>
2017-07-11 00:08:32 +00:00
{% endblock %}