oliverdavies.uk/source/pricing.md

3.9 KiB

title products
Products and Services
title description perMonth price isFrom link
Drupal development subscription In less time than it takes to post on a job board, and for a fraction of the cost, get unlimited access to a certified Drupal development expert, core contributor and multiple-time DrupalCon speaker for a fixed monthly fee. No surprises. Cancel anytime. true 5000 true
text url
Register now /subscription
title description price link
Drupal upgrade roadmap Are you stuck on an already or soon-to-be unsupported version of Drupal? Get a personalised roadmap of your Drupal website, including details and actionable steps to upgrade it. 5000
text url
Book your roadmap now /drupal-upgrade
title description price link
Diagnosis An in-depth investigation into a single issue where I'll provide a report with my findings and advice on the next steps. Once you've purchased, you can book a Zoom call with me to discuss what you want me to investigate. 2500
text url
Book now https://buy.stripe.com/00gbJs84G2jg8Vy9AJ
title description price isFrom link
Private talk or workshop If you found one of my public speaking presentations or workshops useful, I'm available for private speaking engagements on a variety of topics to help your team succeed. 2000 true
text url
Schedule a talk https://buy.stripe.com/eVa4h0bgSaPM6NqcMU
title description price link
1-on-1 consulting call Book a 1-on-1 video call, and I can help you by answering questions about software development, architecture and automation, helping you write your first automated test, or reviewing some of your code and giving advice and suggestions. 350
text url
Book your call now /call
title description price link
Pair program with me Would you like another pair of eyes on your code, providing real-time suggestions and feedback rather than waiting for a code review? Book a 2-hour pair programming call and we can work on your code together. 499
text url
Book your session now /pair
title description link
Introduction to Automated Testing in Drupal - 10-day email course Register for my free email course on automated testing in Drupal.
text url
Register now /atdc
title description link
Drupal module template If you're creating a new Drupal module, try starting with my free module template for Drupal 9 and 10.
text url
Download https://github.com/opdavies/drupal-module-template

{% block content %}

{% for product in page.products %}

{{ product.title }} - {{ product.isFrom ? 'from' }} {% if product.price %} £{{ product.price|number_format() }} {% else %} free! {% endif %} {{ product.perMonth ? 'per month' }}

<div>
  <p>
    {{ product.description }}

    {% if product.remainingPlaces == 1 %}
      <strong>1 place remaining!</strong>
    {% elseif product.remainingPlaces > 1 %}
      <strong>{{ product.remainingPlaces }} places remaining!</strong>
    {% elseif product.isLimited %}
      <strong>Limited places available!</strong>
    {% endif %}
  </p>
</div>

<footer>
  <a href="{{ product.link.url }}">
    {{ product.link.text }}
    &rarr;
  </a>
</footer>
{% endfor %} {% endblock %}

{% block content_top %} {% include 'message.html.twig' %} {% endblock %}