]> Raphaël G. Git Repositories - airbundle/commitdiff
New header layout
authorRaphaël Gertz <git@rapsys.eu>
Thu, 13 Oct 2022 13:16:02 +0000 (15:16 +0200)
committerRaphaël Gertz <git@rapsys.eu>
Thu, 13 Oct 2022 13:16:02 +0000 (15:16 +0200)
Resources/views/location/cities.html.twig

index 54e869004dcf0db7b592823fd8c9a31842ba4b04..a822f90bccb58856a05c55a67a473a0562d825c1 100644 (file)
@@ -2,8 +2,7 @@
 {% block content %}
        <article id="dashboard" class="city">
                <header>
-                       <h2><a href="{{ canonical }}">{{ title }}</a></h2>
-                       <p>{{ description }}</p>
+                       <h2>{{ description }}</h2>
                </header>
                <div class="panel">
                        {% if cities is defined and cities %}
@@ -13,7 +12,7 @@
                                                        <header>
                                                                <h3><a href="{{ city.link }}">{{ city.city }} ({{ city.id }})</a></h3>
                                                        </header>
-                                                       <div class="panel grid{% if cities|length > 1%} two{% else %} three{% endif %}">
+                                                       <div class="panel">
                                                                {% if city.multimap is defined and city.multimap %}
                                                                        <div class="multimap">
                                                                                <a href="{{ city.multimap.link }}" title="{{ city.multimap.caption }}">
                                                                                </a>
                                                                        </div>
                                                                {% endif %}
-                                                               {% for id, location in city.locations %}
-                                                                       <article class="cell">
-                                                                               <h4>{% if city.multimap is defined and city.multimap %}{{ id }} {% endif %}<a href="{{ location.link }}">{{ location.title }}</a></h4>
-                                                                       </article>
-                                                               {% endfor %}
+                                                               <ul class="grid{% if city.locations|length > 1 %} two{% endif %}">
+                                                                       {% for id, location in city.locations %}
+                                                                               <li>{% if city.multimap is defined and city.multimap %}{{ id }} {% endif %}<a href="{{ location.link }}">{{ location.title }}</a></li>
+                                                                       {% endfor %}
+                                                               </ul>
                                                        </div>
                                                </article>
                                        {% endfor %}