1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 00:03:28 +01:00

templates

- base.html: removed including the query pages query.css in every page
 - query.html: include query.css in head block
This commit is contained in:
John Berlin 2019-09-04 14:57:09 -04:00
parent e34606cecb
commit ae78a955de
No known key found for this signature in database
GPG Key ID: 6EF5E4B442011B02
2 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,6 @@
<!-- jquery and bootstrap dependencies query view -->
<link rel="stylesheet" href="{{ static_prefix }}/css/bootstrap.min.css"/>
<link rel="stylesheet" href="{{ static_prefix }}/css/query.css">
<link rel="stylesheet" href="{{ static_prefix }}/css/font-awesome.min.css">
<script src="{{ static_prefix }}/js/jquery-latest.min.js"></script>

View File

@ -6,6 +6,7 @@
{% block head %}
{{ super() }}
<link rel="stylesheet" href="{{ static_prefix }}/css/query.css">
<script src="{{ static_prefix }}/query.js"></script>
{% endblock %}