WhisperMaPhone/main/templates/whispermaphone/page.html

39 lines
877 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}{% endblock %}</title>
{% load static %}
<link href="{% static 'main/main.css' %}" rel="stylesheet">
{% block head %}{% endblock %}
<link rel="icon" sizes="192x192" href="{% static 'images/favicon-192x192.png'%}">
<link rel="apple-touch-icon" href="{% static 'images/apple-touch-icon.png'%}"/>
<style>
/*Semantic styles load as part of the page*/
.hidden {
display: none;
}
</style>
</head>
<body>
<header>
<nav id="main-nav">
{% block navigation %}{% endblock %}
</nav>
</header>
<main class="main-wrap" id="main-content">
{% block main %}
{% endblock %}
</main>
{% block scripts %}
{% endblock %}
</body>
</html>