<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}{{ site.title }}{% endblock title %}</title>
<meta name="description" content="{% block description %}{{ site.tagline }}{% endblock description %}">
{% block social_meta %}{% endblock social_meta %}
<link rel="stylesheet" href="{{ css_href }}">
</head>
<body>
<header class="site-header">
<div class="wrap">
<div class="brand">
<h1 class="site-title"><a href="{{ home_href }}">{{ site.header_title }}</a></h1>
<p class="site-tagline">{{ site.header_tagline }}</p>
</div>
<nav class="header-nav">
<a href="{{ home_href }}" class="{{ 'active' if active_nav == 'latest' else '' }}">Home</a>
<a href="{{ archive_href }}" class="{{ 'active' if active_nav == 'archive' else '' }}">Archive</a>
<a href="{{ about_href }}" class="{{ 'active' if active_nav == 'about' else '' }}">About</a>
</nav>
</div>
</header>
<main class="wrap">
{% block content %}{% endblock content %}
</main>
<footer class="site-footer">
<div class="wrap">
<span class="footer-brand">{{ site.header_title }}</span>
<div class="footer-links">
<a href="{{ home_href }}">Home</a>
<a href="{{ archive_href }}">Archive</a>
<a href="{{ about_href }}">About</a>
</div>
<span class="footer-copy">© {{ year }} {{ site.title }}. Built with sblog.</span>
</div>
</footer>
</body>
</html>