You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
861 B

<header class="header" data-controller="menu" {{ attributes }}>
<div class="header__logo">
<h1 class="brand"><a href="/">{{ website_name }}</a></h1>
<button class="hamburger btn btn-secondary" data-action="click->menu#toggle" aria-label="Menu">&#9776;</button>
</div>
<div class="header__categories" data-menu-target="menu">
<ul>
{% for category in cats %}
<li><twig:Molecules:CategoryLink coordinate="{{ category }}" /></li>
{% endfor %}
{% if magazine_community_articles %}
<li>
<a href="{{ path('articles') }}">Latest Articles</a>
</li>
{% endif %}
</ul>
</div>
<div data-controller="progress-bar">
<div id="progress-bar" data-progress-bar-target="bar"></div>
</div>
</header>