mirror of
https://github.com/jekyll/jekyll.git
synced 2026-02-10 14:45:38 -05:00
- use anchor instead of h1 for site title, for semantic accuracy, and because post h1’s should be the post title - implement nav wrapper for nav links - use div.wrap for design structure
14 lines
274 B
HTML
14 lines
274 B
HTML
<header class="site-header">
|
|
|
|
<div class="wrap">
|
|
|
|
<a class="site-title" href="/">{{ site.name }}</a>
|
|
|
|
<nav class="site-nav">
|
|
<a class="page-link" href="/about">About</a>
|
|
<a class="page-link" href="/projects">Projects</a>
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
</header> |