summaryrefslogtreecommitdiff
path: root/templates/header.html
blob: ef38e96035ebdadd98bb95e97298b139a68a4c5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<header>
	<div class="header-inner">
		<div class="site-title">
			<a href="/"><span class="pink">arslaan</span><span class="white">@</span><span class="yellow">thinkpad-e16-void</span><span class="white">:</span><span class="green bold">~</span></a>
		</div>
		<nav>
			<a href="/" class="{% if current_path == '/' %}active{% else %}purple{% endif %}">home</a>
			<a href="/projects" class="{% if current_path is starting_with('/projects') %}active{% else %}purple{% endif %}">projects</a>
			<a href="/blog" class="{% if current_path is starting_with('/blog') %}active{% else %}purple{% endif %}">blog</a>
		</nav>
	</div>
</header>