Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

Commit 80b5554

Browse files
committed
Organize static files a bit better
1 parent 2582f10 commit 80b5554

File tree

8 files changed

+4
-4
lines changed

8 files changed

+4
-4
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

templates/base.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
99
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
1010
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css">
11-
<link rel="stylesheet" href="{{ url_for('static', filename='dqm_style.css') }}">
11+
<link rel="stylesheet" href="{{ url_for('static', filename='common/dqm_style.css') }}">
1212
{% block head%}
1313
{% endblock %}
1414
</head>

templates/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends "base.html" %} {%block head %}
2-
<script src="{{ url_for('static', filename='index_utils.js') }}"></script>
2+
<script src="{{ url_for('static', filename='index/index_utils.js') }}"></script>
33
<title>DQM&sup2; Mirror</title>
44
{% endblock %} {% block extra_navbar_links %}
55
<li class="nav-item">

templates/release_comparisons.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends "base.html" %} {% block head %}
2-
<script src="{{ url_for('static', filename='pagination_helper.js') }}"></script>
2+
<script src="{{ url_for('static', filename='common/pagination_helper.js') }}"></script>
33
<title>DQM CMSSW Release comparison results browser</title>
44
{% endblock %} {% block content %}
55
<div class="row mt-5">

templates/timeline.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends "base.html" %} {% block head %}
2-
<script src="{{ url_for('static', filename='canvasslider.js') }}"></script>
2+
<script src="{{ url_for('static', filename='timeline/canvasslider.js') }}"></script>
33
<title>DQM&sup2; Mirror — Timeline</title>
44
{% endblock %} {% block content %}
55
<br />

0 commit comments

Comments
 (0)