67 lines
2.5 KiB
HTML
67 lines
2.5 KiB
HTML
<style media="all">
|
|
{% include 'style.css' %}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
{% include 'symbols.svg' %}
|
|
|
|
<header class="content-header" id="main-header">
|
|
<nav class="content-navigation">
|
|
<ul>
|
|
<li>
|
|
<a title="home" href="/" class="{% if ( not post or post.url == '' ) and ( taxonomy.name == '' ) %} active{% endif %}">
|
|
<svg class="icon"><use xlink:href="#icon-home" /></svg>
|
|
home
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a title="photos" href="/category/photo/" class="{% if (post and post.category == 'photo' ) or ( taxonomy.slug == 'photo' ) %} active{% endif %}">
|
|
<svg class="icon"><use xlink:href="#icon-photo" /></svg>
|
|
photos
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a title="journal" href="/category/journal/" class="{% if ( post and post.category == 'journal' ) or ( post and 'journal' in post.tags ) or ( taxonomy.slug == 'journal' ) %} active{% endif %}">
|
|
<svg class="icon"><use xlink:href="#icon-journal" /></svg>
|
|
journal
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a title="IT" href="/category/article/" class="{% if ( post and post.category == 'article' ) or ( post and 'IT' in post.tags ) or ( ( taxonomy.slug == 'article' ) or ( taxonomy.slug == 'it' ) ) %} active{% endif %}">
|
|
<svg class="icon"><use xlink:href="#icon-article" /></svg>
|
|
IT
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a title="notes" href="/category/note/" class="{% if ( post and 'Note' in post.tags ) or ( taxonomy.slug == 'note' ) %} active{% endif %}">
|
|
<svg class="icon"><use xlink:href="#icon-note" /></svg>
|
|
notes
|
|
</a>
|
|
</li>
|
|
{#
|
|
<li>
|
|
<a title="replies" href="/category/reply/" class="{% if ( post and 'Reply' in post.tags ) or ( taxonomy.slug == 'reply' ) %} active{% endif %}">
|
|
<svg class="icon"><use xlink:href="#icon-reply" /></svg>
|
|
re:
|
|
</a>
|
|
</li>
|
|
#}
|
|
<li>
|
|
<a title="bookmarks" href="/category/bookmark/" class="{% if ( post and post.category == 'bookmark' ) or ( post and 'Bookmark' in post.tags ) or ( taxonomy.slug == 'bookmark' ) %} active{% endif %}">
|
|
<svg class="icon"><use xlink:href="#icon-bookmark" /></svg>
|
|
bookmarks
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
|
|
<form role="search" method="get" class="search-form" action="/search">
|
|
<label for="search" class="hide">Search</label>
|
|
<input type="search" class="search-field" placeholder="search..." value="" name="s" id="s" title="Search for:" />
|
|
<input type="submit" class="search-submit" value="Go ➡" />
|
|
<input type="hidden" class="hide" value="{{ taxonomy.slug }}" name="c" id="c" />
|
|
</form>
|
|
|
|
<br class="clear" />
|
|
</header>
|