aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2018-07-01 22:34:52 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2018-07-01 22:34:52 +0200
commit7275d868885a43e9537d92fa83dac299b62595e1 (patch)
tree5219207e5a2d4e5880f5a618e8a22d75feb6cb06 /src/web/templates
parentUpdated JS dependencies. (diff)
downloadnewspipe-7275d868885a43e9537d92fa83dac299b62595e1.tar.gz
newspipe-7275d868885a43e9537d92fa83dac299b62595e1.tar.bz2
newspipe-7275d868885a43e9537d92fa83dac299b62595e1.zip
Removed now useless files.
Diffstat (limited to 'src/web/templates')
-rw-r--r--src/web/templates/layout.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/web/templates/layout.html b/src/web/templates/layout.html
index 33ccb97f..29d4470f 100644
--- a/src/web/templates/layout.html
+++ b/src/web/templates/layout.html
@@ -9,15 +9,15 @@
<title>Newspipe{% if head_titles %} - {{ ' - '.join(head_titles) }}{% endif %}</title>
<link rel="shortcut icon" href="{{ url_for("static", filename="img/favicon.ico") }}" />
<!-- Bootstrap core CSS -->
- <link href="{{ url_for("static", filename="css/bootstrap.min.css") }}" rel="stylesheet" media="screen" />
+ <link href="{{ url_for('static', filename='bower_components/bootstrap/dist/css/bootstrap.min.css') }}" rel="stylesheet" media="screen" />
<!-- Add custom CSS here -->
<link href="{{ url_for("static", filename="css/customized-bootstrap.css") }}" rel="stylesheet" media="screen" />
<!-- jquery, bootstrap, datatables -->
<script type="text/javascript" src="{{ url_for('static', filename = 'js/jquery.js') }}"></script>
- <script type="text/javascript" src="{{ url_for('static', filename = 'js/bootstrap.js') }}"></script>
- <link rel="stylesheet" type="text/css" href="{{ url_for("static", filename="bower_components/datatables.net-bs/css/dataTables.bootstrap.min.css") }}">
- <script type="text/javascript" src="{{ url_for("static", filename="bower_components/datatables.net/js/jquery.dataTables.min.js") }}"></script>
- <script type="text/javascript" src="{{ url_for("static", filename="bower_components/datatables.net-bs/js/dataTables.bootstrap.min.js") }}"></script>
+ <script type="text/javascript" src="{{ url_for('static', filename = 'bower_components/bootstrap/dist/js/bootstrap.min.js') }}"></script>
+ <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='bower_components/datatables.net-bs/css/dataTables.bootstrap.min.css') }}">
+ <script type="text/javascript" src="{{ url_for('static', filename='bower_components/datatables.net/js/jquery.dataTables.min.js') }}"></script>
+ <script type="text/javascript" src="{{ url_for('static', filename='bower_components/datatables.net-bs/js/dataTables.bootstrap.min.js') }}"></script>
{% endblock %}
</head>
<body>
bgstack15