I have got my base.html.twig that I want to use on most parts of my application.
It looks like this:
<html>
<head>
<title>{% block title %}Stack Example{% endblock %}</title>
<link rel="stylesheet" href="/resources_admin/dist/css/custom.css">
{% block stylesheets %}{% endblock %}
</head>
<body class="hold-transition skin-blue sidebar-mini">
{% include 'admin/top_menu/top_menu.html.twig' %}
{% include 'admin/menu/menu.html.twig' %}
{% block body %}{% endblock %}
{% include 'admin/footer/footer.html.twig' %}
<script src="/resources_admin/dist/js/custom.js"></script>
{% block javascripts %}{% endblock %}
</body>
</html>
Everything is fine. But I have one template where I want to use my base.html.twig but I don't want to include top_menu.html.twig.
Is right there any way to exclude something from template? Or I have to create new one?