This repository has been archived on 2025-11-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
portfolio/_includes/header.html
2021-01-22 18:20:12 +00:00

23 lines
857 B
HTML

<!-- Header -->
<header id="header">
<img src="/images/logo-clear-square.png" class="logo" />
<a class="logo" href="/">Matthew Grove</a>
<nav>
<a href="#menu">Menu</a>
</nav>
</header>
<!-- Nav -->
<nav id="menu">
<ul class="links">
<li><a href="/" class="{% if page.url == '/' or page.url == '/index.html' %}current-page-link{% endif %}">Home</a></li>
{% assign all_pages = site.pages | concat: site.data.navigation | sort: "title" %}
{% for project in all_pages %}
{% assign project_url_end = project.url| slice: -4, 4 %}
{% if project.url != "/" and project.url != "/index.html" and project.url != "/sitemap.xml" and project_url_end != ".css" %}
<li><a href="{{ project.url | relative_url }}" class="{% if project.url == page.url %}current-page-link{% endif %}">{{ project.title }}</a></li>
{% endif %}
{% endfor %}
</ul>
</nav>