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.
22 lines
973 B
22 lines
973 B
<header class="header"> |
|
<div class="header__logo"><h1 class="brand"><a href="/">newsroom</a></h1></div> |
|
<div class="header__categories"> |
|
<ul> |
|
<li {% if app.current_route is same as("world") %}class="active"{% endif %}> |
|
<a href="/world">World</a> |
|
</li> |
|
<li {% if app.current_route is same as("business") %}class="active"{% endif %}> |
|
<a href="/business">Business</a> |
|
</li> |
|
<li {% if app.current_route is same as("technology") %}class="active"{% endif %}> |
|
<a href="/technology">Technology</a> |
|
</li> |
|
<li {% if app.current_route is same as("lifestyle") %}class="active"{% endif %}> |
|
<a href="/lifestyle">Lifestyle</a> |
|
</li> |
|
<li {% if app.current_route is same as("art") %}class="active"{% endif %}> |
|
<a href="/art">Art</a> |
|
</li> |
|
</ul> |
|
</div> |
|
</header>
|
|
|