{% extends 'base.html.twig' %}
{% block title %}Le territoire - PTGE{% endblock %}
{% block body %}
{% set title = pageLePTGE.kezakoTitle | split(' ') %}
{% for word in title %}
{% if loop.last is same as true %}
{% else %}
{% if "'" in word %}
{% set wordSep = word | split("'") %}
{% for wordSeparate in wordSep %}
{% if loop.last is same as true %}
{% else %}
{{ wordSeparate }}'{{ wordSep|last }}
{% endif %}
{% endfor %}
{% else %}
{% if loop.index is same as(loop.length-1) %}
{{ word }}
{% else %}
{{ word }}
{% endif %}
{% endif %}
{% endif %}
{% endfor %}
{{ title|last }}