Add work company name and URL

This commit is contained in:
Oliver Davies 2021-06-30 08:00:00 +01:00
parent 3c8ce2724b
commit 45be574a6a
5 changed files with 14 additions and 5 deletions

View file

@ -63,6 +63,9 @@ twitter:
url: 'https://twitter.com/%twitter.name%'
work:
company:
name: Transport for Wales
url: https://trc.cymru
role: Lead Software Developer
youtube:

View file

@ -14,6 +14,9 @@
</div>
</div>
{% include 'about-author' %}
{% include 'about-author' with {
avatar: site.avatar,
work: site.work,
} only %}
</div>
{% endblock %}

View file

@ -20,6 +20,9 @@
} only %}
</div>
{% include 'about-author' %}
{% include 'about-author' with {
avatar: site.avatar,
work: site.work,
} only %}
</div>
{% endblock %}

View file

@ -7,7 +7,7 @@ is_front: true
<div class="markdown" markdown="1">
<div class="w-32 mb-4"><img src="/sites/default/files/images/social-avatar.jpg" alt="Picture of Oliver" class="border rounded-full border-gray"></div>
Hi, I'm Oliver Davies (aka <a href="https://www.google.com/#q=opdavies">opdavies</a>). Im a Lead Software Developer at <a href="https://trc.cymru?utm_source=oliverdavies.uk&amp;utm_medium=about">Transport for Wales</a> and a part-time freelance Web Developer and System Administrator, based in Wales, UK.
Hi, I'm Oliver Davies (aka <a href="https://www.google.com/#q=opdavies">opdavies</a>). Im a {{ site.work.role }} at <a href="{{ site.work.company.url }}?utm_source=oliverdavies.uk&amp;utm_medium=about">{{ site.work.company.name }}</a> and a part-time freelance Web Developer and System Administrator, based in Wales, UK.
Ive been a Developer since 2007 and specialise in using Drupal, Symfony and Vue.js. I use Ansible for server provisioning and application deployments.

View file

@ -3,13 +3,13 @@
<div class="flex mt-4 space-x-4">
<div class="flex-shrink-0">
<img src="/sites/default/files/images/social-avatar.jpg" alt="Picture of Oliver" class="w-16 h-16 border rounded-full border-gray">
<img src="{{ avatar.url }}" alt="Picture of Oliver" class="w-16 h-16 border rounded-full border-gray">
</div>
<div>
<p>
Oliver Davies is a PHP Developer and Linux Systems Administrator based in the UK.
He is a Lead Software Developer at <a href="https://trc.cymru?utm_source=oliverdavies.uk&amp;utm_medium=about-author" class="link">Transport for Wales</a> and a part-time freelancer specialising in Drupal and Symfony application development.
He is a {{ work.role }} at <a href="{{ work.company.url }}?utm_source=oliverdavies.uk&amp;utm_medium=about-author" class="link">{{ work.company.name }}</a> and a part-time freelancer specialising in Drupal and Symfony application development.
</p>
</div>
</div>