In the one page theme where does the id=modular-features comes from (the ‘why grav build better sites’ part)? In the file structure it is feature.md which contains content that means it is rendered through feature.html.twig, but when i search the base.html.twig there is no
{% block feature%}{% endblock %} or {% block modular%}{% endblock %} anything of this sort.
the part of it comes from(in thebase.html.twig) what i understood is:
<section id=“start”>
{% block body %}
<section id=“body-wrapper” class=“section”>
<section class=“container {{ grid_size }}”>
{% block messages %}
{% include ‘partials/messages.html.twig’ ignore missing %}
{% endblock %}
{% block content %}{% endblock %}
</section>
</section>
{% endblock %}
</section>
when i remove this part it takes out the entire body as expected, but then where does the features.html.twig comes in place???