fix: avatar path
This commit is contained in:
parent
c9abc087dc
commit
d65fe60b18
|
@ -3,7 +3,7 @@
|
|||
|
||||
<div class="flex mt-4 space-x-4">
|
||||
<div class="flex-shrink-0">
|
||||
<img src="{{ avatar.url }}" alt="Picture of Oliver" class="w-16 h-16 rounded-full border border-gray">
|
||||
<img src="{{ avatar.path }}" alt="Picture of Oliver" class="w-16 h-16 rounded-full border border-gray">
|
||||
</div>
|
||||
|
||||
<div>
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
{% set metaImage = [
|
||||
site.url,
|
||||
'/',
|
||||
page.meta.image ?? site.avatar.url,
|
||||
page.meta.image ?? site.avatar.path,
|
||||
]|join %}
|
||||
|
||||
<title>{{ pageTitle }}</title>
|
||||
|
|
|
@ -12,7 +12,7 @@ meta:
|
|||
{% set yearsOfExperience = thisYear - site.experience.start_year %}
|
||||
|
||||
<div class="markdown" markdown="1">
|
||||
<div class="w-32 mb-4"><img src="{{ site.avatar.path }}" alt="Picture of Oliver" class="border rounded-full border-gray"></div>
|
||||
<div class="mb-4 w-32"><img src="{{ site.avatar.path }}" alt="Picture of Oliver" class="rounded-full border border-gray"></div>
|
||||
Hi, I’m Oliver. I’m a {{ site.work.role }} for <a href="{{ site.work.company.url }}?utm_source=oliverdavies.uk&utm_medium=about">{{ site.work.company.name }}</a> and a Full Stack Software Consultant based in South Wales in the UK.
|
||||
|
||||
I work with organisations, agencies, and freelance Developers to deliver high-quality websites and web applications, utilising tools and workflows such as continuous integration and deployment, automated testing, and static analysis.
|
||||
|
|
Loading…
Reference in a new issue