Oliver Davies
fc3e30eddd
- Allow loading testimonials by tag instead of name. - Remove the code to load testimonials by name. - Add a `limit` and `offset` to create different lists on the same page - e.g. on the team coaching page where I have two testimonial sections.
19 lines
452 B
Markdown
19 lines
452 B
Markdown
---
|
|
title: Register for daily software development emails
|
|
---
|
|
|
|
{% block content %}
|
|
Subscribe to my daily newsletter for software professionals on software development and delivery, DevOps, community, and open-source.
|
|
|
|
{% include 'daily-email-form.html.twig' %}
|
|
{% endblock %}
|
|
|
|
{% block content_bottom %}
|
|
{% include 'testimonials.html.twig' with {
|
|
tag: 'daily',
|
|
title: 'What subscribers have said',
|
|
} %}
|
|
|
|
{{ parent() }}
|
|
{% endblock %}
|