{% extends "base.html" %} {% load staticfiles thumbnail %} {% block content %}

{{ page.about_us_title}}

{{ page.about_us_content|safe }}
{% if page.call_to_action_1 %}
{% include 'partials/call_to_action.html' with cta=page.call_to_action_1 %}
{% endif %} {% if page.call_to_action_2 %}
{% include 'partials/call_to_action.html' with cta=page.call_to_action_2 %}
{% endif %} {% if page.call_to_action_3 %}
{% include 'partials/call_to_action.html' with cta=page.call_to_action_3 %}
{% endif %} {% if page.call_to_action_4 %}
{% include 'partials/call_to_action.html' with cta=page.call_to_action_4 %}
{% endif %}

Latest News

{% for article in news %}

{{ article.title }}

{{ article.date|date:"d M Y"|upper }}
{{ article.content|striptags|safe|linebreaks }}
{% endfor %}

Tests

{% for test in tests %}
{{ test.description|striptags|linebreaks }}
{% endfor %}

{{ page.doctors_title }}

{{ page.doctors_brief|safe }} View All
{% if page.doctor_1 %}
{% include 'partials/doctor.html' with doctor=page.doctor_1 %}
{% endif %} {% if page.doctor_2 %}
{% include 'partials/doctor.html' with doctor=page.doctor_2 %}
{% endif %} {% if page.doctor_3 %}
{% include 'partials/doctor.html' with doctor=page.doctor_3 %}
{% endif %}

{{ page.feedback_title }}

{{ page.feedback_content|safe }}

Click here to read more

{% for f in feedback %}

{{ f.name }}

{{ f.feedback|linebreaks }}

{{ f.when }}

{% endfor %}

{% for partner in partners %}
{% if partner.link %}{% endif %} {{ partner.name }} {% if partner.link %}{% endif %}
{% endfor %}
{% endblock %}