WIP: Add CV
This commit is contained in:
parent
1a8bb99843
commit
80731d7914
7
source/_partials/cv/certifications.html.twig
Normal file
7
source/_partials/cv/certifications.html.twig
Normal file
|
@ -0,0 +1,7 @@
|
|||
<h2>Certifications</h2>
|
||||
|
||||
<ul>
|
||||
{% for certification in page.certifications %}
|
||||
<li>{{ certification.title }}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
21
source/_partials/cv/experience.html.twig
Normal file
21
source/_partials/cv/experience.html.twig
Normal file
|
@ -0,0 +1,21 @@
|
|||
<h2>Experience</h2>
|
||||
|
||||
<ul class="list-reset">
|
||||
{% for item in page.experience %}
|
||||
<li class="mb-12">
|
||||
{% if site.companies[item.company].url %}
|
||||
<h3><a href="{{ site.companies[item.company].url }}" class="text-inherit no-underline hover:underline focus:bg-grey-darkest">{{ site.companies[item.company].name }}</a></h3>
|
||||
{% else %}
|
||||
<h3>{{ site.companies[item.company].name }}</h3>
|
||||
{% endif %}
|
||||
|
||||
{% for role in item.roles %}
|
||||
<div>
|
||||
<h4 class="mb-3 text-grey-darker">{{ role.title }} from {{ role.from }} to {{ role.to ?: 'present' }} ({{ role.location }})</h4>
|
||||
|
||||
{{ role.description|markdown }}
|
||||
</div>
|
||||
{% endfor %}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
113
source/cv.html.twig
Normal file
113
source/cv.html.twig
Normal file
|
@ -0,0 +1,113 @@
|
|||
---
|
||||
layout: page
|
||||
title: Curriculum Vitae
|
||||
experience:
|
||||
- company: microserve
|
||||
roles:
|
||||
- title: Senior Drupal Developer
|
||||
from: March 2017
|
||||
to: ~
|
||||
location: Bristol, UK
|
||||
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.
|
||||
- company: freelance
|
||||
roles:
|
||||
- title: Senior Drupal Developer
|
||||
from: 2017
|
||||
to: ~
|
||||
location: Bristol, UK
|
||||
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: appnovation
|
||||
roles:
|
||||
- title: Senior Drupal Developer
|
||||
from: May 2016
|
||||
to: March 2017
|
||||
location: Cardiff, UK
|
||||
description: |
|
||||
Drupal 7 and 8 site building, custom module development and theming.
|
||||
|
||||
Part of various pre-sales teams, including the company’s first UK Drupal 8 project and first FTSE 100 client.
|
||||
- company: cti
|
||||
roles:
|
||||
- title: Lead Drupal Developer
|
||||
from: November 2015
|
||||
to: May 2016
|
||||
location: Remote
|
||||
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: microserve
|
||||
roles:
|
||||
- title: Senior Drupal Developer
|
||||
from: July 2015
|
||||
to: November 2015
|
||||
location: Bristol, UK
|
||||
description: |
|
||||
Full-stack Drupal development, focussing on data migration.
|
||||
|
||||
Lead Developer of the [road.cc](https://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: drupal_association
|
||||
roles:
|
||||
- title: Drupal.org Developer
|
||||
from: May 2014
|
||||
to: July 2015
|
||||
location: Remote
|
||||
description: |
|
||||
Maintaining and improving [Drupal.org](https://www.drupal.org) - the home of the Drupal community.
|
||||
|
||||
Speaking at user groups and DrupalCamps to promote the Drupal Association.
|
||||
- company: precedent
|
||||
roles:
|
||||
- title: Senior Drupal Developer
|
||||
from: April 2013
|
||||
to: May 2014
|
||||
location: Cardiff, UK
|
||||
description: |
|
||||
Drupal 7 website development, including site building, theming, module development, data migration and server configuration.
|
||||
- company: nomensa
|
||||
roles:
|
||||
- title: Application Developer
|
||||
from: July 2012
|
||||
to: April 2013
|
||||
location: Bristol, UK
|
||||
description: Drupal 7 website development and Linux server administration.
|
||||
- title: Drupal Developer (contract)
|
||||
from: February 2012
|
||||
to: July 2012
|
||||
location: Bristol, UK
|
||||
description: Drupal 7 website development.
|
||||
- company: proctors
|
||||
roles:
|
||||
- title: Drupal/PHP Developer
|
||||
from: April 2011
|
||||
to: February 2012
|
||||
location: Bristol, UK
|
||||
description: Website development, mainly with Drupal and PHP, including the agency’s first Drupal 7 project.
|
||||
- company: horse_country
|
||||
roles:
|
||||
- title: Drupal Web Developer
|
||||
from: July 2010
|
||||
to: April 2011
|
||||
location: Cwmbran, UK
|
||||
description: Maintaining and adding new features to the Horse & Country TV website (Drupal 6).
|
||||
certifications:
|
||||
- title: Acquia certified Grand Master (Drupal 8)
|
||||
- title: Acquia certified Developer (Drupal 8)
|
||||
- title: Acquia certified Front End Specialist (Drupal 8)
|
||||
- title: Acquia certified Back End Specialist (Drupal 8)
|
||||
- title: Acquia certified Cloud Pro
|
||||
---
|
||||
{% include 'cv/experience' %}
|
||||
{% include 'cv/certifications' %}
|
Reference in a new issue