camp/content/templates/featured.html

24 lines
1022 B
HTML
Raw Normal View History

2017-12-18 12:54:04 +00:00
{% for content in featured %}
<div class="large-8 medium-8 columns special-column">
2025-02-01 07:29:28 +00:00
{% if content.video_url %}
<a href="{{ content.get_absolute_url }}"><video class="gif" autoplay loop src="{{ content.video_url }}"></video></a>
{% elif content.image_url %}
<a href="{{ content.get_absolute_url }}"><img src="{{ content.image_url }}"></a>
2017-12-18 12:54:04 +00:00
{% endif %}
<div class="index-text">
<h4><a href="{{ content.get_absolute_url }}" class="big-title">{{content.title}} </a></h4>
2018-06-16 11:57:03 +00:00
{% if content.type.name == 'events' and content.datestart %}
2017-12-18 12:54:04 +00:00
<h6 class="big-date"> <font color="#ef4e5c"> <b> {{ content.datestart }} </b></font>
{% if content.place %}<br/>{{content.place}}{% endif%}
</h6>
{% endif %}
{% if content.header %}
<p> {{content.formatted_header}} </p>
{% else %}
<p> {{content.formatted_body}} </p>
{% endif %}
<a href="{{ content.get_absolute_url }}">read more</a> </p>
</div>
</div>
{% endfor %}