Loading...
Started by Christophe Perez • Apr 8, 2025 2:14 PM
Total Replies
8
Participants
3
Activity
Quiet
Duration
2:14 PM
Thread starter
{% set rows = hubdb_table_rows(TABLEID) %}
{% set program_selection = module.program_selection %}
<div class="custom_cards" id="cards_container">
{% for row in rows %}
{% if row.program_code is within program_selection %}
<div class="card">
<img src="{{ row.card_image.url }}" alt="{{ row.card_heading }}">
<h2>{{ row.card_heading }}</h2>
<p>{{ row.description }}</p>
</div>
{% endif %}
{% endfor %}
</div>8 messages in thread