{% extends 'website/base.html' %} {% load static %} {% block title %}{{ page.title|default:site_settings.site_name }} | {{ site_settings.site_name }}{% endblock %} {% block content %} {% if not page %}

Page not found

No page is set up here yet. If this is meant to be your homepage, open the dashboard and mark a page as "Is homepage".

{% else %} {% with page_hero=page.hero_section %} {% if not page_hero %}

{{ page.headline|default:page.title }}

{% if page.content_top %}
{{ page.content_top|safe|truncatewords_html:50 }}
{% endif %}
{% if page.is_homepage %}

Fully Insured

Public liability & guaranteed work

24/7 Callout

Emergencies handled fast

Fixed-Price Quotes

No surprises on the invoice

5-Star Rated

Trusted by local homeowners

City & Guilds Certified Gas Safe Registered NICEIC Approved 500+ Jobs Completed 10-Year Workmanship Guarantee
{% endif %} {% endif %} {% endwith %} {% if not sections %} {# Fallback for pages with no content sections yet: show the remaining plain content fields #}
{% if page.content_middle %}
{{ page.content_middle|safe }}
{% endif %} {% if page.content_bottom %}
{{ page.content_bottom|safe }}
{% endif %} {% if page.gallery_images.all %} {% endif %}
{% else %} {% include 'website/includes/_page_sections.html' %} {% endif %} {% endif %} {% endblock %}