2017-07-26 11:34:58 +01:00
< style media = "all" >
2017-09-20 12:18:14 +01:00
{% include 'style.css' %}
2017-07-26 11:34:58 +01:00
< / style >
2017-05-23 11:21:10 +01:00
< / head >
< body >
2017-07-17 10:24:39 +01:00
{% include 'symbols.svg' %}
2017-05-23 11:21:10 +01:00
< header class = "content-header" id = "main-header" >
< nav class = "content-navigation" >
< ul >
< li >
2017-08-17 12:33:54 +01:00
< a title = "home" href = "/" class = "{% if ( not post or post.url == '' ) and ( taxonomy.name == '' ) %} active{% endif %}" >
2017-05-23 11:21:10 +01:00
< svg class = "icon" > < use xlink:href = "#icon-home" / > < / svg >
home
< / a >
< / li >
< li >
2017-08-17 12:33:54 +01:00
< a title = "photos" href = "/category/photo/" class = "{% if (post and post.category == 'photo' ) or ( taxonomy.slug == 'photo' ) %} active{% endif %}" >
2017-05-23 11:21:10 +01:00
< svg class = "icon" > < use xlink:href = "#icon-photo" / > < / svg >
photos
< / a >
< / li >
< li >
2017-08-17 12:33:54 +01:00
< 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 %}" >
2017-05-23 11:21:10 +01:00
< svg class = "icon" > < use xlink:href = "#icon-journal" / > < / svg >
journal
< / a >
< / li >
< li >
2017-08-17 12:33:54 +01:00
< 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 %}" >
2017-05-23 11:21:10 +01:00
< svg class = "icon" > < use xlink:href = "#icon-article" / > < / svg >
IT
< / a >
< / li >
< li >
2017-08-17 12:33:54 +01:00
< a title = "notes" href = "/category/note/" class = "{% if ( post and 'Note' in post.tags ) or ( taxonomy.slug == 'note' ) %} active{% endif %}" >
2017-05-23 11:21:10 +01:00
< svg class = "icon" > < use xlink:href = "#icon-note" / > < / svg >
notes
< / a >
< / li >
{#
< li >
2017-08-17 12:33:54 +01:00
< a title = "replies" href = "/category/reply/" class = "{% if ( post and 'Reply' in post.tags ) or ( taxonomy.slug == 'reply' ) %} active{% endif %}" >
2017-05-23 11:21:10 +01:00
< svg class = "icon" > < use xlink:href = "#icon-reply" / > < / svg >
re:
< / a >
< / li >
#}
< li >
2017-08-17 12:33:54 +01:00
< 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 %}" >
2017-05-23 11:21:10 +01:00
< 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 >
2017-07-26 11:34:58 +01:00
< 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" / >
2017-05-23 11:21:10 +01:00
< / form >
< br class = "clear" / >
2017-06-12 15:19:09 +01:00
< / header >