|
@@ -10,6 +10,17 @@
|
|
</ul>
|
|
</ul>
|
|
</section>
|
|
</section>
|
|
|
|
|
|
|
|
+ <!-- Etiquettes -->
|
|
|
|
+ {% set tags = liste_tags() %}
|
|
|
|
+ <section>
|
|
|
|
+ <h2>Etiquettes</h2>
|
|
|
|
+ <p>
|
|
|
|
+ {% for tag in tags %}
|
|
|
|
+ <a href="{{ path('app_search', {'tag': tag.name}) }}"><span class="tag">{{ tag }}</span></a>
|
|
|
|
+ {% endfor %}
|
|
|
|
+ </p>
|
|
|
|
+ </section>
|
|
|
|
+
|
|
<!-- Section Flux -->
|
|
<!-- Section Flux -->
|
|
<section class="feeds">
|
|
<section class="feeds">
|
|
<h2>Flux</h2>
|
|
<h2>Flux</h2>
|
|
@@ -18,7 +29,7 @@
|
|
<li><a href="{{ path('app_feed', {'type': 'rss' }) }}">RSS</a></li>
|
|
<li><a href="{{ path('app_feed', {'type': 'rss' }) }}">RSS</a></li>
|
|
</ul>
|
|
</ul>
|
|
</section>
|
|
</section>
|
|
-
|
|
|
|
|
|
+
|
|
<!-- Section Connexion -->
|
|
<!-- Section Connexion -->
|
|
<section class="connexion">
|
|
<section class="connexion">
|
|
{% if is_granted('IS_AUTHENTICATED_REMEMBERED') %}
|
|
{% if is_granted('IS_AUTHENTICATED_REMEMBERED') %}
|
|
@@ -41,15 +52,6 @@
|
|
{% endif %}
|
|
{% endif %}
|
|
</section>
|
|
</section>
|
|
|
|
|
|
- {% set tags = liste_tags() %}
|
|
|
|
- <section>
|
|
|
|
- <h2>Etiquettes</h2>
|
|
|
|
- <p>
|
|
|
|
- {% for tag in tags %}
|
|
|
|
- <a href="{{ path('app_search', {'tag': tag.name}) }}"><span class="tag">{{ tag }}</span></a>
|
|
|
|
- {% endfor %}
|
|
|
|
- </p>
|
|
|
|
- </section>
|
|
|
|
{#
|
|
{#
|
|
<!-- Catégories -->
|
|
<!-- Catégories -->
|
|
<section class="categories">
|
|
<section class="categories">
|