Skip to content
Snippets Groups Projects
Commit 7a92dd78 authored by Eric Bremner's avatar Eric Bremner
Browse files

ISTWCMS-5195: adding back tags and cleaning up code to output tags

parent a307350e
No related branches found
No related tags found
1 merge request!118Feature/istwcms 5195 ebremner node theming
<div class="card__tags">
{% include "@components/tag-list/tag-list.twig" with {
items: tags
} %}
</div>
......@@ -104,7 +104,6 @@
<div class="card__footer">
{{ footer }}
{{ dd(additional_info) }}
{% if additional_info %}
{% include '@components/card/card-footer-elements/_additional-info.twig' with {
......@@ -210,13 +209,9 @@
{% endif %}
{% if tags %}
<div class="card__tags">
{% for tag in tags %}
{% include "@components/tag-list/tag-list.twig" with {
items: tag
} %}
{% endfor %}
</div>
{% include '@components/card/card-footer-elements/_tags.twig' with {
'tags': tags,
} %}
{% endif %}
{% if read_more and url %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment