Allow for setting a specific CTA from a library

This commit is contained in:
Oliver Davies 2024-02-18 20:20:42 +00:00
parent e962e89ffb
commit 28a853398a
3 changed files with 10 additions and 0 deletions

View file

@ -8,6 +8,10 @@ banner_text: |
In less than 12 months, Drupal 7 will be end-of-life and no longer supported.
<a href="/drupal-upgrade">Plan your upgrade to Drupal 10 now</a>.
ctas:
d7eol: |
There's less than a year until Drupal 7's end-of-life date. <a href="%site.url%/drupal-upgrade">Plan your upgrade to Drupal 10 now!</a>
imports:
- ../../data/assets.yml
- ../../data/meta.yml

View file

@ -10,6 +10,7 @@ tags:
- front-end
- software-development
- css
cta: d7eol
---
This week on the Beyond Blocks podcast, I'm joined by Mark Conroy - Director of Development at Annertech to discuss all things front-end development and building something useful in one day.

View file

@ -6,7 +6,11 @@
{{ parent() }}
<p>- Oliver</p>
{% block cta %}
{% if page.cta and site.ctas[page.cta] is defined %}
<p>P.S. {{ site.ctas[page.cta]|raw }}</p>
{% else %}
{% set ctas = [
'Are you still using Drupal 7 and dont know whats involved to upgrade to Drupal 10? <a href="https://www.oliverdavies.uk/call">Book a Drupal 7 upgrade consultation call</a> or <a href="https://www.oliverdavies.uk/drupal-upgrade">an upgrade roadmap</a>.',
'Need help or want another pair of eyes on your code? Book a <a href="https://www.oliverdavies.uk/call">1-on-1 consulting call</a> or an <a href="https://www.oliverdavies.uk/pair">online pair programming session</a> with a 100% money-back guarantee.',
@ -14,6 +18,7 @@
] %}
<p>P.S. {{ random(ctas)|raw }}</p>
{% endif %}
{% endblock %}
{% endblock %}