diff --git a/material/base.html b/material/base.html index d46ef09242806485a6af76f0356c6e5a2f237cf6..1270714d735518a1ad4496c0ac80ee120df77abf 100644 --- a/material/base.html +++ b/material/base.html @@ -99,9 +99,6 @@ {% endblock %} <div class="md-container"> {% set feature = config.extra.get("feature", {}) %} - {% if feature.hero %} - {% include "partials/hero.html" %} - {% endif %} {% if feature.tabs %} {% include "partials/tabs.html" %} {% endif %} diff --git a/src/base.html b/src/base.html index db8b5157d670b20d962fe9c497eecee516a5c89f..658035ab6c893d54a236126af958bca1c787d0eb 100644 --- a/src/base.html +++ b/src/base.html @@ -195,11 +195,6 @@ <div class="md-container"> {% set feature = config.extra.get("feature", {}) %} - <!-- Hero banner --> - {% if feature.hero %} - {% include "partials/hero.html" %} - {% endif %} - <!-- Tabs with outline --> {% if feature.tabs %} {% include "partials/tabs.html" %}