Create Home page
This commit is contained in:
commit
cd59c54aa8
18 changed files with 4006 additions and 0 deletions
8
source/_includes/about-me.html.twig
Normal file
8
source/_includes/about-me.html.twig
Normal 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>
|
5
source/_includes/main-menu.html.twig
Normal file
5
source/_includes/main-menu.html.twig
Normal file
|
@ -0,0 +1,5 @@
|
|||
<nav>
|
||||
{% for link in site.menu_links %}
|
||||
<a href="{{ link.url }}">{{ link.title }}</a>
|
||||
{% endfor %}
|
||||
</nav>
|
25
source/_includes/testimonials.html.twig
Normal file
25
source/_includes/testimonials.html.twig
Normal 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>
|
13
source/_layouts/default.html.twig
Normal file
13
source/_layouts/default.html.twig
Normal file
|
@ -0,0 +1,13 @@
|
|||
<div>
|
||||
<main>
|
||||
<h1>{{ page.title }}</h1>
|
||||
|
||||
{% block content %}{% endblock %}
|
||||
</main>
|
||||
|
||||
{% block content_bottom %}{% endblock %}
|
||||
|
||||
<footer>
|
||||
{% include 'main-menu.html.twig' %}
|
||||
</footer>
|
||||
<div>
|
27
source/index.md
Normal file
27
source/index.md
Normal file
|
@ -0,0 +1,27 @@
|
|||
---
|
||||
layout: default
|
||||
title: Do you need a certified Drupal expert, core contributor and module maintainer?
|
||||
---
|
||||
|
||||
{% block content %}
|
||||
|
||||
## What I can help you with
|
||||
|
||||
If you are stuck on an unsupported version of Drupal, such as 7, 8 or 9, and don't know what's involved in upgrading, [book a Drupal upgrade consultation call][call] or [roadmap for your website][roadmap].
|
||||
|
||||
If you need help or another pair of eyes on your code, book a 1-on-1 consultation call or an online pair programming session with me, with a 100% money-back guarantee.
|
||||
|
||||
If you want to learn to write better software faster, I'm available for development team coaching.
|
||||
|
||||
## Looking for something else?
|
||||
|
||||
Here are all of my products and services. If you still can't find what you need, send me an email, and I'll see what I can do.
|
||||
{% endblock %}
|
||||
|
||||
{% block content_bottom %}
|
||||
{% include 'testimonials.html.twig' %}
|
||||
{% include 'about-me.html.twig' %}
|
||||
{% endblock %}
|
||||
|
||||
[call]: {{site.url}}/call
|
||||
[roadmap]: {{site.url}}/roadmap
|
Loading…
Add table
Add a link
Reference in a new issue