]> Raphaël G. Git Repositories - airbundle/commitdiff
Fix canonical hreflang to use locale
authorRaphaël Gertz <git@rapsys.eu>
Thu, 12 Aug 2021 15:33:02 +0000 (17:33 +0200)
committerRaphaël Gertz <git@rapsys.eu>
Thu, 12 Aug 2021 15:33:02 +0000 (17:33 +0200)
Switch to new facebook metas
Switch to rapsys_user edit form
Fix alternates hreflang format

Resources/views/body.html.twig

index 6fea7b45bb70e6525d80228528457f14f3b8e142..73aa6779d8d89a660503d1e35d128e5de28a43d0 100644 (file)
                {% endstylesheet %}
        {% endstopwatch %}
        {% if canonical is defined and canonical %}
                {% endstylesheet %}
        {% endstopwatch %}
        {% if canonical is defined and canonical %}
-               <link rel="canonical" href="{{ canonical }}"{% if app.request.locale is defined and app.request.locale %} hreflang="{{ app.request.locale }}"{% endif %} />
+               <link rel="canonical" href="{{ canonical }}"{% if locale is defined and locale %} hreflang="{{ locale }}"{% endif %} />
        {% endif %}
        {% if alternates is defined and alternates %}
                {% for lang, alternate in alternates %}
                        <link rel="alternate" href="{{ alternate.absolute }}" hreflang="{{ lang }}" />
                {% endfor %}
        {% endif %}
        {% endif %}
        {% if alternates is defined and alternates %}
                {% for lang, alternate in alternates %}
                        <link rel="alternate" href="{{ alternate.absolute }}" hreflang="{{ lang }}" />
                {% endfor %}
        {% endif %}
-       {% if ogps is defined and ogps %}
-               {% for property, content in ogps %}
-                       <meta property="og:{{ property }}" content="{{ content }}" />
-               {% endfor %}
-               {% for property, contents in facebooks %}
+       {% if facebook['metas'] is defined and facebook['metas'] %}
+               {% for property, contents in facebook['metas'] %}
                        {% if contents is iterable %}
                                {% for content in contents %}
                        {% if contents is iterable %}
                                {% for content in contents %}
-                                       <meta property="fb:{{ property }}" content="{{ content }}" />
+                                       <meta property="{{ property }}" content="{{ content }}" />
                                {% endfor %}
                        {% else %}
                                {% endfor %}
                        {% else %}
-                               <meta property="fb:{{ property }}" content="{{ contents }}" />
+                               <meta property="{{ property }}" content="{{ contents }}" />
                        {% endif %}
                {% endfor %}
        {% endif %}
                        {% endif %}
                {% endfor %}
        {% endif %}
@@ -84,7 +81,7 @@
                                                        <li><a href="{{ path('rapsys_air_organizer_regulation') }}">{% trans %}Organizer regulation{% endtrans %}</a></li>
                                                {% endif %}
                                                {% if is_granted('IS_AUTHENTICATED_REMEMBERED') %}
                                                        <li><a href="{{ path('rapsys_air_organizer_regulation') }}">{% trans %}Organizer regulation{% endtrans %}</a></li>
                                                {% endif %}
                                                {% if is_granted('IS_AUTHENTICATED_REMEMBERED') %}
-                                                       <li><a href="{{ path('rapsys_air_user_view', {id: app.user.id}) }}">{% trans %}My account{% endtrans %}</a></li>
+                                                       <li><a href="{{ path('rapsys_user_edit', {mail: app.user.mail|short, hash: app.user.mail|short|hash}) }}">{% trans %}My account{% endtrans %}</a></li>
                                                        <li><a href="{{ path('rapsys_user_logout') }}">{% trans %}Logout{% endtrans %}</a></li>
                                                {% else %}
                                                        <li><a href="{{ path('rapsys_user_login') }}">{% trans %}Login{% endtrans %}</a></li>
                                                        <li><a href="{{ path('rapsys_user_logout') }}">{% trans %}Logout{% endtrans %}</a></li>
                                                {% else %}
                                                        <li><a href="{{ path('rapsys_user_login') }}">{% trans %}Login{% endtrans %}</a></li>
                                {% if langs|length > 1 %}
                                        <ul>
                                                {% for lang in langs %}
                                {% if langs|length > 1 %}
                                        <ul>
                                                {% for lang in langs %}
-                                                       <li><a href="{{ alternates[lang].relative }}" hreflang="{{ lang }}" title="{{ alternates[lang].title }}">{{ alternates[lang].translated }}</a></li>
+                                                       <li><a href="{{ alternates[lang].relative }}" hreflang="{{ lang|replace({'_': '-'}) }}" title="{{ alternates[lang].title }}">{{ alternates[lang].translated }}</a></li>
                                                {% endfor %}
                                        </ul>
                                {% else %}
                                        {% set lang = langs|first %}
                                                {% endfor %}
                                        </ul>
                                {% else %}
                                        {% set lang = langs|first %}
-                                       <a href="{{ alternates[lang].relative }}" hreflang="{{ lang }}" title="{{ alternates[lang].title }}">{{ alternates[lang].translated }}</a>
+                                       <a href="{{ alternates[lang].relative }}" hreflang="{{ lang|replace({'_': '-'}) }}" title="{{ alternates[lang].title }}">{{ alternates[lang].translated }}</a>
                                {% endif %}
                        {% else %}
                                <span>&nbsp;</span>
                                {% endif %}
                        {% else %}
                                <span>&nbsp;</span>