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

24 lines
808 B
HTML

<!-- Header -->
<header id="header">
<img src="https://mgrove.uk/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="/" {% if page.url == "/" or page.url == "/index.html" %} class="current-page-link" {% endif %}>Home</a></li>
<li><a href="https://blog.mgrove.uk">Blog</a></li>
{% assign all_pages = site.pages | sort: "title" %}
{% for project in all_pages %}
{% if project.url != "/" and project.url != "/index.html" and project.url != "/sitemap.xml" %}
<li><a href="{{ project.url | relative_url }}" {% if project.url == page.url %} class="current-page-link"
{% endif %}>{{ project.title }}</a></li>
{% endif %}
{% endfor %}
</ul>
</nav>