mirror of
https://github.com/CoderSherlock/CoderSherlock.github.io.git
synced 2026-06-13 16:18:09 -07:00
12 lines
392 B
HTML
12 lines
392 B
HTML
<header class="header">
|
|
<div class="wrapper">
|
|
<a class="site-title" href="{{ site.baseurl }}/">{{ site.title }}</a>
|
|
<nav class="site-nav">
|
|
{% for page in site.pages %}
|
|
{% if page.title and page.public %}
|
|
<a class="page-link" href="{{ page.url | prepend: site.baseurl }}">{{ page.title }}</a>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</nav>
|
|
</div>
|
|
</header> |