Is there anyway to repeat one block in twig like this:
<title>{% block title %}{% endblock %} | MyBusiness</title>
<meta name="title" content="{% block title %}{% endblock %} | MyBusiness"/>
In order to only declare the two blocks once? Like that:
{% block title %}
The title I want to show in each title and metaTitle tags.{{ parent() }}
{% endblock %}