all repos — nasg @ e9899b3e3301c038e51a7494594640c4eface810

block_header_close.html (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
	<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="{{ site.url }}/" 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="{{ site.url }}/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="{{ site.url }}/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="{{ site.url }}/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="{{ site.url }}/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="{{ site.url }}/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="{{ site.url }}/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>