PHP Classes

File: templates/blog/_post_tags.html.twig

Recommend this page to a friend!
  Classes of Manolo Salsas   Symfony Create Bundle Skeleton   templates/blog/_post_tags.html.twig   Download  
File: templates/blog/_post_tags.html.twig
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Symfony Create Bundle Skeleton
Application to create reusable Symfony Bundles
Author: By
Last change:
Date: 4 years ago
Size: 443 bytes
 

Contents

Class file image Download
{% if not post.tags.empty %} <p class="post-tags"> {% for tag in post.tags %} <a href="{{ path('blog_index', {'tag': tag.name == app.request.query.get('tag') ? null : tag.name}) }}" class="label label-{{ tag.name == app.request.query.get('tag') ? 'success' : 'default' }}" > <i class="fa fa-tag"></i> {{ tag.name }} </a> {% endfor %} </p> {% endif %}