2019-03-08 16:11:07 -08:00
|
|
|
<!DOCTYPE html>
|
2021-06-14 17:09:00 -07:00
|
|
|
<html lang="{{ env.pywb_lang | default(default_locale) }}">
|
2019-03-08 16:11:07 -08:00
|
|
|
<head>
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8;charset=utf-8"/>
|
2019-11-01 18:30:23 -04:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2019-03-08 16:11:07 -08:00
|
|
|
|
|
|
|
<title>{% block title %}{% endblock %}</title>
|
|
|
|
|
|
|
|
<!-- jquery and bootstrap dependencies query view -->
|
|
|
|
<link rel="stylesheet" href="{{ static_prefix }}/css/bootstrap.min.css"/>
|
|
|
|
<link rel="stylesheet" href="{{ static_prefix }}/css/font-awesome.min.css">
|
2021-06-09 13:12:53 -07:00
|
|
|
<link rel="stylesheet" href="{{ static_prefix }}/css/base.css">
|
2019-03-08 16:11:07 -08:00
|
|
|
|
|
|
|
<script src="{{ static_prefix }}/js/jquery-latest.min.js"></script>
|
|
|
|
<script src="{{ static_prefix }}/js/bootstrap.min.js"></script>
|
|
|
|
|
|
|
|
{% block head %}
|
|
|
|
{% include 'head.html' ignore missing %}
|
|
|
|
{% endblock %}
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
{% block header %}
|
|
|
|
{% include 'header.html' ignore missing %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
<section>
|
|
|
|
{% block body %}
|
|
|
|
{% endblock %}
|
|
|
|
</section>
|
|
|
|
|
|
|
|
{% block footer %}
|
|
|
|
{% include 'footer.html' ignore missing %}
|
|
|
|
{% endblock footer %}
|
|
|
|
</body>
|
|
|
|
</html>
|