mirror of
https://github.com/mgrove36/bbc-young-reporter.git
synced 2026-03-03 03:17:07 +00:00
27 lines
1.0 KiB
HTML
27 lines
1.0 KiB
HTML
<!-- Header -->
|
|
<header id="header">
|
|
<img src="/images/logo-white-padded.png" class="logo" />
|
|
<a class="logo" href="/">BBC Young Reporter</a>
|
|
<nav>
|
|
<a href="#menu">Menu</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<!-- Nav -->
|
|
<nav id="menu">
|
|
<ul class="links">
|
|
{% for link in site.data.navigation-links %}
|
|
<li><a href="{{ link.url }}" target="_blank" class="{% if page.url == link.url %}current-page-link{% endif %} main-navbar-link">{{ link.title }}</a></li>
|
|
{% endfor %}
|
|
|
|
{% for article in site.articles reversed %}
|
|
{% assign currentdate = article.date | date: "%Y" %}
|
|
{% if currentdate != date %}
|
|
{% assign year_url = "/years/" | append: currentdate | append: ".html" %}
|
|
<li><a href="/years/{{ currentdate }}" class="{% if page.url == year_url %}current-page-link{% endif %} year-navbar-link">{{ currentdate }}</a></li>
|
|
{% assign date = currentdate %}
|
|
{% endif %}
|
|
<li><a href="{{ article.url | relative_url }}" class="{% if article.url == page.url %}current-page-link{% endif %} article-navbar-link">{{ article.title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</nav> |