23 lines
579 B
HTML
23 lines
579 B
HTML
{% if content.opttext2 %}
|
|
<div class="part2">
|
|
{% if content.optbtn2 %}
|
|
<h4>{{ content.optbtn2|safe }} </h4>
|
|
{% endif %}
|
|
<p>{{ content.opttext2|safe|linebreaks }}</p>
|
|
</div>
|
|
{% endif %}
|
|
{% if content.opttext3 %}
|
|
<div class="part3">
|
|
{% if content.optbtn3 %}
|
|
<h4>{{ content.optbtn3|safe }} </h4>
|
|
{% endif %}
|
|
<p>{{ content.opttext3|safe|linebreaks }}</p>
|
|
</div>
|
|
{% endif %}
|
|
{% if content.schedule %}
|
|
<div class="schedule">
|
|
<h4>{{content.schedulebutton|default:"Schedule"}}</h4>
|
|
<p>{{ content.schedule|safe|linebreaks }}</p>
|
|
</div>
|
|
{% endif %}
|