mirror of
https://github.com/jekyll/jekyll.git
synced 2026-01-30 17:28:29 -05:00
This is the big site redesign by @cobyism. To work with the new site deployment mechanism, it is being copied from the gh-pages branch of that PR into the existing site dir. Before we finally deploy the new site, we should remember to merge #583 so that we keep all the history from that PR.
27 lines
747 B
HTML
27 lines
747 B
HTML
<header>
|
|
<div class="content">
|
|
<div class="grid3 first">
|
|
<h1>
|
|
<a href="{{ site.url }}/">
|
|
<span>Jekyll</span>
|
|
<img src="{{ site.url }}/img/logo-2x.png" width="249px" height="115px" alt="">
|
|
</a>
|
|
</h1>
|
|
</div>
|
|
<nav class="grid6">
|
|
<ul>
|
|
<li {% if page.overview %}class="current"{% endif %}>
|
|
<a href="{{ site.url }}/">Overview</a>
|
|
</li>
|
|
<li {% unless page.overview %}class="current"{% endunless %}>
|
|
<a href="{{ site.url }}/docs">Documentation</a>
|
|
</li>
|
|
<li class="">
|
|
<a href="https://github.com/mojombo/jekyll">View on GitHub</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
<div class="clear"></div>
|
|
</div>
|
|
</header>
|