46 lines
1.7 KiB
HTML
46 lines
1.7 KiB
HTML
{% load static %}
|
|
|
|
<html>
|
|
<head>
|
|
<title>{% block title %}{% endblock %}</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="apple-touch-icon" sizes="180x180" href="{% static "apple-touch-icon.png" %}">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="{% static "favicon-32x32.png" %}">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="{% static "favicon-16x16.png" %}">
|
|
<link rel="manifest" href="{% static "site.webmanifest" %}">
|
|
<link rel="mask-icon" href="{% static "safari-pinned-tab.svg" %}" color="#5bbad5">
|
|
<meta name="msapplication-TileColor" content="#2d89ef">
|
|
<meta name="theme-color" content="#ffffff">
|
|
<link rel="stylesheet" href="{% static "css/lib/bootstrap.min.css" %}" />
|
|
<link rel="stylesheet" href="{% static "css/main.css" %}?v=20210112" />
|
|
{% block css %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
{% block header %}{% endblock %}
|
|
<div class="{% block container_class %}container{% endblock %}">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
<footer>
|
|
<div class="container">
|
|
© 2021 Judy Mou and Ian Webster <span class="desktop-only">| <a href="mailto:spacereference@ianww.com">Contact</a> | Built with <a href="https://typpo.github.io/spacekit/">SpaceKit</a></span>
|
|
</div>
|
|
</footer>
|
|
|
|
{% block scripts %}{% endblock %}
|
|
<script src="/static/dist/js/bundle.js?v=20210719.3"></script>
|
|
|
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-54607101-2"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', 'UA-54607101-2');
|
|
</script>
|
|
|
|
{% include 'feedback.html' %}
|
|
|
|
</body>
|
|
</html>
|