{% if entry.homesPanelMatrix is not null and entry.homesPanelMatrix.count() %}
    {% for panel in entry.homesPanelMatrix.all() %}

        {% if panel.type == 'homeContentPanel' %}
            {% include themeDir ~ '/_includes/_panels/_homes/_home-content-panel' %}
        {% endif %}

        {% if panel.type == 'homeDetailsPanel' %}
            {% include themeDir ~ '/_includes/_panels/_homes/_home-details-panel' %}
        {% endif %}

        {% if panel.type == 'homeImagePanel' %}
            {% include themeDir ~ '/_includes/_panels/_homes/_home-image-panel' %}
        {% endif %}

        {% if panel.type == 'homeStatsPanel' %}
            {% include themeDir ~ '/_includes/_panels/_homes/_home-stats-panel' %}
        {% endif %}

        {% if panel.type == 'homeVideoPanel' %}
            {% include themeDir ~ '/_includes/_panels/_homes/_home-video-panel' %}
        {% endif %}

    {% endfor %}
{% endif %}