Files
intotheeast-com-content/themes/intotheeast/templates/partials/base.html.twig
T

23 lines
831 B
Twig

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% if page.title %}{{ page.title }} | {% endif %}{{ site.title }}</title>
<link rel="stylesheet" href="{{ url('theme://css/style.css') }}">
</head>
<body class="{% if page.template == 'map' %}map-page{% endif %}">
<header class="site-header">
<a class="site-title" href="{{ base_url_absolute }}">{{ site.title }}</a>
<nav class="site-nav">
<a href="{{ base_url_absolute }}/tracker">Journal</a>
<a href="{{ base_url_absolute }}/map">Map</a>
<a href="{{ base_url_absolute }}/stats">Stats</a>
</nav>
</header>
<main class="site-main">
{% block content %}{% endblock %}
</main>
</body>
</html>