Skip to content
Snippets Groups Projects

ISTWCMS-5214: adding theming needed for opportunity and also fixing dates

Merged Eric Bremner requested to merge feature/ISTWCMS-5214-ebremner-theme-opportunity-node into 3.0.x
2 files
+ 16
10
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -65,6 +65,22 @@
} %}
{% endif %}
{% if footer.posted %}
{% include '@components/label/label.twig' with {
'label': 'Date posted'
} %}
{% include '@components/card/card-elements/_date.twig' with {
'date_format': 'long',
'date': footer.posted
} %}
{% endif %}
{% if footer.opportunity_type %}
{% include '@components/card/card-elements/_opportunity-type.twig' with {
'opportunity_type': footer.opportunity_type
} %}
{% endif %}
{% if footer.tags %}
{% include '@components/card/card-elements/_tags.twig' with {
'tags': footer.tags,
Loading