Create Home page

This commit is contained in:
Oliver Davies 2024-01-03 20:00:00 +00:00
commit cd59c54aa8
18 changed files with 4006 additions and 0 deletions

View file

@ -0,0 +1,8 @@
<section>
<h2>About me</h2>
<div>
<img src="https://www.oliverdavies.uk/images/social-avatar.jpg" alt="Picture of Oliver">
<p>I'm an Acquia-certified Drupal Triple Expert with 16 years of experience, an open-source software maintainer and Drupal core contributor, <a href="/talks">public speaker</a>, and host of the <a href="/podcast">Beyond Blocks podcast</a>.</p>
</div>
</section>

View file

@ -0,0 +1,5 @@
<nav>
{% for link in site.menu_links %}
<a href="{{ link.url }}">{{ link.title }}</a>
{% endfor %}
</nav>

View file

@ -0,0 +1,25 @@
<section>
<h2>Testimonials</h2>
<div>
{% for testimonial in site.testimonials %}
<blockquote>
{{ testimonial.text|markdown }}
{% if testimonial.image %}
<img alt="Photo of {{ testimonial.name }}" src="{{ testimonial.image.url }}" />
{% endif %}
<footer>
{% if testimonial.url %}
<a href="{{ testimonial.url }}">
{{ testimonial.name }}, {{ testimonial.title }}
</a>
{% else %}
{{ testimonial.name }}, {{ testimonial.title }}
{% endif %}
</footer>
</blockquote>
{% endfor %}
</div>
</section>