Major improvements and fixes
[snf-cloudcms] / cloudcms / templates / content / section / block.html
1 <section class="section">
2 {% if content.title %}
3 <h2>{{ content.title }}</h2>
4 {% endif %}
5 {% if content.mediafile.type == "image" %}
6     <img class="section-img" src="{{ content.mediafile.get_absolute_url }}" />
7 {% endif %}
8 <p>
9 {{ content.richtext|safe }}
10 </p>
11 </section>