{% load static %} {% for section in sections %}
{# ========== HERO SECTION ========== #} {% if section.section_type == "hero" %}

{{ section.title|default:"Professional Garden Care & Landscaping" }}

{{ section.content|safe|truncatewords_html:50 }}
{% if section.button_text and section.button_link %} {{ section.button_text }} {% endif %} {% if section.button_text_2 and section.button_link_2 %} {{ section.button_text_2 }} {% endif %}
{% if section.main_image %} {{ section.main_image.alt_text|default:section.title }} {% endif %}
{# ========== SERVICES SECTION ========== #} {% elif section.section_type == "services" %}

{{ section.title|default:"Our Gardening Services" }}

{% if section.content %}
{{ section.content|safe }}
{% endif %}
{% for service in section.services.all %}

{{ service.title }}

{{ service.description }}

{% empty %}

No services added yet.

{% endfor %}
{# ========== GALLERY SECTION ========== #} {% elif section.section_type == "gallery" %}

{{ section.title|default:"Our Work Gallery" }}

{% if section.content %} {% endif %}
{# ========== TESTIMONIALS SECTION ========== #} {% elif section.section_type == "testimonials" %}

{{ section.title|default:"What Our Clients Say" }}

{% if section.content %}
{{ section.content|safe }}
{% endif %}
{% for testimonial in section.testimonials.all %}
{% if testimonial.image %}
{{ testimonial.name }}
{% endif %}

{{ testimonial.content|safe }}

{{ testimonial.name }} {% if testimonial.role %} {{ testimonial.role }} {% endif %}
{% if testimonial.rating %}
{# Loop over a string of 5 characters – no custom filter needed #} {% for i in "12345" %} {% if forloop.counter <= testimonial.rating %} {% else %} {% endif %} {% endfor %}
{% endif %}
{% empty %}

No testimonials added yet.

{% endfor %}
{# ========== ABOUT SECTION ========== #} {% elif section.section_type == "about" %}

{{ section.title|default:"Why choose us?" }}

{{ section.content|safe|truncatewords_html:100 }}
{% if section.button_text and section.button_link %} {{ section.button_text }} {% endif %}
{% if section.main_image %} {{ section.main_image.alt_text|default:section.title }} {% else %} Our team {% endif %}
{# ========== FAQ SECTION ========== #} {% elif section.section_type == "faq" %}

{{ section.title|default:"Frequently Asked Questions" }}

{% if section.content %}
{{ section.content|safe }}
{% endif %}
{% for faq in section.faqs.all %}
{{ faq.question }}
{{ faq.answer|linebreaks }}
{% empty %}

No FAQs added yet.

{% endfor %}
{# ========== OTHER PAGE SECTION ========== #} {% elif section.section_type == "other_page" %}
{% if section.title %}

{{ section.title }}

{% endif %} {% if section.main_image %}
{{ section.main_image.alt_text|default:section.title }}
{% endif %} {% if section.content %}
{{ section.content|safe }}
{% endif %} {% if section.button_text and section.button_link %} {{ section.button_text }} {% endif %}
{# ========== CONTACT SECTION ========== #} {% elif section.section_type == "contact" %}

{{ section.title|default:"Get In Touch" }}

{% if section.content %}
{{ section.content|safe }}
{% endif %}
{% if site_settings %}

Based in: {{ site_settings.address|default:"Manchester & surrounding areas" }}

Call or WhatsApp: {{ site_settings.phone|default:"07700 1234565515" }}

Email: {{ site_settings.email|default:"hello@yourbusiness.co.uk" }}

{% if site_settings.whatsapp_number %}

WhatsApp: Chat with us

{% endif %} {% if site_settings.opening_hours %}

Opening hours:

    {% for line in site_settings.opening_hours.splitlines %} {% if line %}
  • {{ line }}
  • {% endif %} {% endfor %}
{% endif %} {% else %}

Based in: Your City

Call: 07700 123456

Email: hello@yourbusiness.co.uk

{% endif %}

Send us a message

{% csrf_token %} {{ form.as_p }}

We’ll reply within 24 hours.

{% if site_settings and site_settings.google_maps_embed %}
{{ site_settings.google_maps_embed|safe }}
{% endif %}
{% endif %}
{% endfor %} {# ========== FLOATING WHATSAPP BUTTON ========== #} {% if site_settings and site_settings.whatsapp_number %} {% endif %}