{% extends 'base.html.twig' %}
{% block title %}Le territoire - PTGE{% endblock %}
{% block body %}
{% set whoTitle = pageAbout.title | split('-') %}
{% if whoTitle|length is same as 2 %}
{% for word in whoTitle %}
{% if loop.last is same as true %}
{% else %}
{{ word }}-{% set whoTitleLast = whoTitle|last | split(' ') %}{% for wordLast in whoTitleLast %}{% if loop.last is same as true %}{% else %}{{ wordLast }}{% endif %}{% endfor %}
{{ whoTitleLast|last }}
{% endif %}
{% endfor %}
{% endif %}
{% if whoTitle|length is not same as 2 %}
{% set whoTitleSplitSpace = pageAbout.title | split(' ') %}
{% for word in whoTitleSplitSpace %}
{% if loop.last is same as true %}
{% else %}
{{ word }}
{% endif %}
{% endfor %}
{{ whoTitle|last }}
{% endif %}