{% extends "layout.html" %} {% load i18n %} {% load static %} {% load theme_tags %} {% block title %}{% trans "Home" %}{% endblock %} {% block content %} {% themed_template "website/partials/hero_section.html" as hero_section_template %} {% include hero_section_template with hero_text=hero_text %}
{% include "website/partials/value_propositions.html" with value_propositions=value_propositions %}
{% themed_template "website/partials/services_featured.html" as services_featured_template %}
{% include services_featured_template with featured_services=featured_services %}
{% themed_template "website/partials/testimonials.html" as testimonials_template %}
{% include testimonials_template with testimonials=testimonials %}
{% include "website/partials/call_to_action.html" with call_to_action=call_to_action %}
{% endblock %}