X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/7a943bc0d48763bfac7d4a0c5b563e26dfd8cc0a..578d9c40c478fb956228ac45e8aa325bd8aecbb6:/Resources/views/default/_city.html.twig?ds=sidebyside

diff --git a/Resources/views/default/_city.html.twig b/Resources/views/default/_city.html.twig
index e03c14c..f373590 100644
--- a/Resources/views/default/_city.html.twig
+++ b/Resources/views/default/_city.html.twig
@@ -1,6 +1,6 @@
 {# Display cities #}
 {% if cities is defined and cities %}
-	<article class="city">
+	<article>
 		<header>
 			<h2><a href="{{ path('rapsys_air_city') }}" title="{% trans %}Libre Air cities{% endtrans %}">{% trans %}Cities{% endtrans %}</a></h2>
 			<p>{% trans %}Libre Air city list{% endtrans%}
@@ -18,7 +18,7 @@
 			{% endif %}
 			<div class="grid{% if cities|length > 1 %} two{% endif %}">
 				{% for id, city in cities %}
-					<article class="cell">
+					<article>
 						<header>
 							<h3><a href="{{ city.link }}">{{ city.city }} ({{ city.id }})</a></h3>
 						</header>
@@ -34,7 +34,7 @@
 						{% if city.locations is defined and city.locations %}
 							<ul>
 								{% for id, location in city.locations %}
-									<li>{% if multimap is defined and multimap %}{{ id }} {% endif %}<a href="{{ location.link }}">{{ location.title }}</a></li>
+									<li><a href="{{ location.link }}">{% if multimap is defined and multimap %}{{ id }} {% endif %}{{ location.title }}</a></li>
 								{% endfor %}
 							</ul>
 						{% endif %}