1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-25 07:27:47 +01:00
pywb/pywb/templates/base.html

37 lines
1.2 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="{{ env.pywb_lang | default(default_locale) }}">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8;charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<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">
<link rel="stylesheet" href="{{ static_prefix }}/css/base.css">
<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>