<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>{% block title %}{% endblock %}</title>
    <link rel="stylesheet" href="/style.css">
</head>
<body>
{% include "sprites.svg" %}
    <header>
        {% block breadcrumbs %}{% endblock %}
    </header>
    <main>
        {% block content %}{% endblock %}
    </main>
{% block scripts %}{% endblock %}
<footer>served with <a href="#">{{ crate::PKG_NAME }}</a> v{{ crate::PKG_VERSION }}</footer>
</body>
</html>
