header.html.twig 483 Bytes
Newer Older
Julien Jorry committed
1 2 3
<header class="container header">
	<nav class="menu navbar navbar-expand-md navbar-light bg-light my-2">
		<a class="navbar-brand" href="{{ url('index') }}">
4
			<img src="/images/logo.png" width="187" height="45" class="d-inline-block align-top" alt="{{ KOH_MLC_NAME|default('') }}">
Julien Jorry committed
5 6 7 8 9 10 11 12 13
		</a>

		{% block menu %}
			{% if app.request.attributes.get('_route') != 'installation' %}
				{% include '@kohinos/common/menu.html.twig' %}
			{% endif %}
		{% endblock menu %}
	</nav>
</header>