diff options
author | François Schmidts <francois.schmidts@gmail.com> | 2016-01-21 13:48:06 +0100 |
---|---|---|
committer | François Schmidts <francois.schmidts@gmail.com> | 2016-01-26 23:47:08 +0100 |
commit | 41aea41aaff0886fd6c211f03db2b54863a97165 (patch) | |
tree | 8d67b31febf78b5c40d60dc8ea3cb613fa4a65f2 /src/web/templates | |
parent | bootstraping react (diff) | |
download | newspipe-41aea41aaff0886fd6c211f03db2b54863a97165.tar.gz newspipe-41aea41aaff0886fd6c211f03db2b54863a97165.tar.bz2 newspipe-41aea41aaff0886fd6c211f03db2b54863a97165.zip |
filters are working !
Diffstat (limited to 'src/web/templates')
-rw-r--r-- | src/web/templates/home2.html | 2 | ||||
-rw-r--r-- | src/web/templates/layout.html | 5 |
2 files changed, 0 insertions, 7 deletions
diff --git a/src/web/templates/home2.html b/src/web/templates/home2.html index 54413b35..3e9d4a6f 100644 --- a/src/web/templates/home2.html +++ b/src/web/templates/home2.html @@ -1,8 +1,6 @@ {% extends "layout.html" %} {% block content %} <section id="jarrapp"></section> -<script type="text/javascript" src="{{ url_for("static", filename="js/jquery.js") }}"></script> -<script type="text/javascript" src="{{ url_for("static", filename="js/bootstrap.min.js") }}"></script> <script type="text/javascript" src="{{ url_for("static", filename="js/bundle.min.js") }}"></script> {% endblock %} diff --git a/src/web/templates/layout.html b/src/web/templates/layout.html index db5b6589..0b2f371d 100644 --- a/src/web/templates/layout.html +++ b/src/web/templates/layout.html @@ -140,10 +140,5 @@ </div> {% block content %}{% endblock %} - - <!-- Bootstrap core JavaScript --> - <!-- Placed at the end of the document so the pages load faster --> - <script type="text/javascript" src="{{ url_for("static", filename="js/jquery.js") }}"></script> - <script type="text/javascript" src="{{ url_for("static", filename="js/bootstrap.min.js") }}"></script> </body> </html> |