{% extends "base.html" %} {% import "_icons.html" as icon %} {% block title %}{{ site.title }} - {{ site.tagline }}{% endblock %} {% block content %}

{% for quote in hero.quotes %}

“{{ quote.text }}”

{{ quote.source }}
{% endfor %}
{{ hero.image_alt }}

{{ hero.tagline }}

{{ hero.sub }}

{{ hero.note }}

{% for section in sections %}
{% if section.type == 'install' %}

{{ section.title }}

{% if section.subtitle %}

{{ section.subtitle }}

{% endif %}
{{ section.command_label }}
{{ section.command }}

{{ section.note }}

{% elif section.type == 'community' %}

{{ section.title }}

{{ section.subtitle }}

{% elif section.type == 'feature-board' %}

{{ section.title }}

{{ section.subtitle }}

{{ section.html }}
{% else %}

{{ section.title }}

{{ section.html }}
{% endif %}
{% endfor %}
{% endblock %} {% block modal_toc %} {% endblock %}