{% extends "texsitefreelancer/base.html" %} {% load texsitecore_tags %} {% block freelancer-body-content %} {% for block in page.body %} {% if block.block_type == "intro" or block.block_type == "hero_image" %} {% get_block_template block.block_type as block_template %} {% include block_template with value=block.value %} {% endif %} {% endfor %} {% for block in page.body %} {% if block.block_type != "intro" and block.block_type != "hero_image" %}
{% get_block_template block.block_type as block_template %} {% include block_template with value=block.value %}
{% endif %} {% endfor %} {% endblock %}