nasg/templates/block_header_close.html

71 lines
2.7 KiB
HTML
Raw Normal View History

2018-06-01 10:48:03 +01:00
<style media="all">
2018-06-16 17:53:42 +01:00
{% include 'style.css' %}
2018-06-01 10:48:03 +01:00
</style>
2017-05-23 11:21:10 +01:00
</head>
<body>
<header class="content-header" id="main-header">
2018-06-01 10:48:03 +01:00
<nav class="content-navigation">
<ul>
<li>
{% set cssclass = '' %}
{% if taxonomy is defined and taxonomy.name == '' %}
2018-06-01 10:48:03 +01:00
{% set cssclass = 'active' %}
{% endif %}
2018-06-01 10:48:03 +01:00
<a title="home" href="/" class="{{ cssclass }}">
<svg class="icon" width="16" height="16"><use xlink:href="#icon-home" /></svg>
home
</a>
</li>
{% set cssclass = '' %}
{% if (post is defined and post.category == 'photo' ) or ( taxonomy is defined and taxonomy.name == 'photo' ) %}
2018-06-01 10:48:03 +01:00
{% set cssclass = 'active' %}
{% endif %}
2018-06-01 10:48:03 +01:00
<li>
<a title="photos" href="/category/photo/" class="{{ cssclass }}">
<svg class="icon" width="18" height="16"><use xlink:href="#icon-photo" /></svg>
photos
</a>
</li>
{% set cssclass = '' %}
{% if (post is defined and post.category == 'journal' ) or ( taxonomy is defined and taxonomy.name == 'journal' ) %}
2018-06-01 10:48:03 +01:00
{% set cssclass = 'active' %}
{% endif %}
2018-06-01 10:48:03 +01:00
<li>
<a title="journal" href="/category/journal/" class="{{ cssclass }}">
<svg class="icon" width="16" height="16"><use xlink:href="#icon-journal" /></svg>
journal
</a>
</li>
{% set cssclass = '' %}
{% if (post is defined and post.category == 'article' ) or ( taxonomy is defined and taxonomy.name == 'article' ) %}
2018-06-01 10:48:03 +01:00
{% set cssclass = 'active' %}
{% endif %}
2018-06-01 10:48:03 +01:00
<li>
<a title="IT" href="/category/article/" class="{{ cssclass }}">
<svg class="icon" width="16" height="16"><use xlink:href="#icon-article" /></svg>
IT
</a>
</li>
{% set cssclass = '' %}
{% if (post is defined and post.category == 'note' ) or ( taxonomy is defined and taxonomy.name == 'note' ) %}
2018-06-01 10:48:03 +01:00
{% set cssclass = 'active' %}
{% endif %}
2018-06-01 10:48:03 +01:00
<li>
<a title="notes" href="/category/note/" class="{{ cssclass }}">
<svg class="icon" width="16" height="16"><use xlink:href="#icon-note" /></svg>
notes
</a>
</li>
</ul>
</nav>
2017-05-23 11:21:10 +01:00
2018-06-01 10:48:03 +01:00
<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 ➡" />
</form>
2017-05-23 11:21:10 +01:00
2018-06-01 10:48:03 +01:00
<br class="clear" />
</header>