Skip to content
This repository was archived by the owner on Sep 21, 2022. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<body class="{{ body_class }}" data-breakpoint>
{# Header #}
{% block header %}
{% include 'components/header.twig' %}
{% include 'templates/organisms/header.twig' %}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nitpick: We can omit the templates/ part from the string 😉

{% endblock %}

{# Content #}
Expand All @@ -32,7 +32,7 @@

{# Footer #}
{% block footer %}
{% include 'components/footer.twig' %}
{% include 'templates/organisms/footer.twig' %}
{% endblock %}
</body>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</h1>

<nav class="nav-main" role="navigation">
{% include 'components/menu.twig' with { menu: menu.get_items } %}
{% include 'templates/organisms/menu.twig' with { menu: menu.get_items } %}
</nav>
</div>
</header>