Is there a way to repeat one block in twig like this:
<title>{% block title %}{% endblock %} | MyBusiness</title> <meta name="title" content="{% block title %}{% endblock %} | MyBusiness"/>
To declare only two blocks once? For instance:
{% block title %} The title I want to show in each title and metaTitle tags.{{ parent() }} {% endblock %}
source share