forked from jekyll/jekyll
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request 6567
Showing
5 changed files
with
91 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,31 @@ | ||
<header> | ||
<nav class="mobile-nav show-on-mobiles"> | ||
{% include primary-nav-items.html %} | ||
{% include mobile-nav-items.html %} | ||
</nav> | ||
<div class="grid"> | ||
<div class="unit one-third center-on-mobiles"> | ||
<div class="flexbox"> | ||
<div class="center-on-mobiles"> | ||
<h1> | ||
<a href="/"> | ||
<a href="/" class="logo"> | ||
<span class="sr-only">Jekyll</span> | ||
<img src="/img/logo-2x.png" width="249" height="115" alt="Jekyll Logo"> | ||
<img src="/img/logo-2x.png" width="140" height="65" alt="Jekyll Logo"> | ||
</a> | ||
</h1> | ||
</div> | ||
<nav class="main-nav unit two-thirds hide-on-mobiles"> | ||
<nav class="main-nav hide-on-mobiles"> | ||
{% include primary-nav-items.html %} | ||
{% include search/input.html %} | ||
</nav> | ||
<div class="search hide-on-mobiles"> | ||
{% include search/input.html %} | ||
</div> | ||
<div class="meta hide-on-mobiles"> | ||
<ul> | ||
<li> | ||
<a href="{{ site.repository }}/releases/tag/v{{ jekyll.version }}">v{{ jekyll.version }}</a> | ||
</li> | ||
<li> | ||
<a href="{{ site.repository }}">GitHub</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</header> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<ul> | ||
<li class="{% if page.overview %}current{% endif %}"> | ||
<a href="/">Home</a> | ||
</li> | ||
<li class="{% if page.url contains '/docs/' %}current{% endif %}"> | ||
<a href="/docs/home/">Docs</a> | ||
</li> | ||
<li class="{% if page.author %}current{% endif %}"> | ||
<a href="/news/">News</a> | ||
</li> | ||
<li class="{% if page.url contains '/help/' %}current{% endif %}"> | ||
<a href="/help/">Help</a> | ||
</li> | ||
<li> | ||
<a href="{{ site.repository }}">GitHub</a> | ||
</li> | ||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters