{% extends "main.html" %} {% macro category(title,text,img,features) %}

{{title}}

{{text|safe}}

Explore features

{%for item in features%} {{ feature_item( item.title, item.description, item.icon, item.link) }} {%endfor%}
{% endmacro %} {% macro render_features(categories=[]) %}
{% for c in categories %} {{ category(c.title,c.text,c.img,c.features) }} {% endfor %}
{% endmacro %} {% macro feature_item(title,description,icon,link) %}
{{title}}

{{description}}

{% endmacro %} {%block site_nav%} {{super()}} {%endblock%} {%block styles%} {{super()}} {%endblock%} {% block tabs %} {{ super() }} {% set hero = page.meta.sections.Hero %} {% if hero %} {{ render_hero( hero.title, hero.text, hero.buttons, hero.img.src|url) }} {% endif %} {{ render_features(page.meta.sections.Features) }} {% endblock %} {% macro render_button(title,url) %} {{title}} {% endmacro %} {% macro render_hero(title,text,buttons,img_url) %}

{{ title }}

{{ text }}

{%for button in buttons%} {{ render_button(button.title,button.url) }} {%endfor%}
{% if img_url %}
{% endif %} {% endmacro %} {% block content %} {% endblock %}