Skip to content
Snippets Groups Projects

Feature/istwcms 6354 m26lebla theme tags block

Merged Martin Leblanc requested to merge feature/ISTWCMS-6354-m26lebla-theme-tags-block into 1.0.x
1 file
+ 19
13
Compare changes
  • Side-by-side
  • Inline
@@ -4,21 +4,27 @@
size ? 'tag--' ~ size
] %}
{% if is_demo %}
<h4>This is a simple tag </h4>
<h4>This is a simple tag </h4>
{% endif %}
{% if faculty %}
<span class="{{ faculty }}">
{% endif %}
<a href="{{ url }}" class="{{ classes|join(' ') }}" rel="tag">{{ title }}</a>
{% if faculty %}
</span>
{% endif %}
{% if faculty %}
<span class="{{ faculty }}">
{% endif %}
{% if url %}
<a href="{{ url }}" class="{{ classes|join(' ') }}" rel="tag">
{% endif %}
{{ title }}
{% if url %}
</a>
{% endif %}
{% if faculty %}
</span>
{% endif %}
{% if is_demo %}
<br>
<h4>This is a full tag </h4>
<a href="{{ url }}" class="tag tag--full tag--normal" rel="tag">
{{ title }}
</a>
<br>
<h4>This is a full tag </h4>
<a href="{{ url }}" class="tag tag--full tag--normal" rel="tag">
{{ title }}
</a>
{% endif %}
Loading