aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/layout.html
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-06-28 15:01:04 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-06-28 15:01:04 +0200
commitfe6daa5852d1084cee2efc0f16ee5c8c26847539 (patch)
treea3b4d55d0b2d54a9256e88797b1c294377fef94d /pyaggr3g470r/templates/layout.html
parentTable rows of the dashboard are colored for inactive accounts. (diff)
downloadnewspipe-fe6daa5852d1084cee2efc0f16ee5c8c26847539.tar.gz
newspipe-fe6daa5852d1084cee2efc0f16ee5c8c26847539.tar.bz2
newspipe-fe6daa5852d1084cee2efc0f16ee5c8c26847539.zip
Try to star an article with a jQuery PUT call.
Diffstat (limited to 'pyaggr3g470r/templates/layout.html')
-rw-r--r--pyaggr3g470r/templates/layout.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyaggr3g470r/templates/layout.html b/pyaggr3g470r/templates/layout.html
index e97128f7..10b802a2 100644
--- a/pyaggr3g470r/templates/layout.html
+++ b/pyaggr3g470r/templates/layout.html
@@ -10,6 +10,8 @@ deployed on Heroku or on a traditional server." />
<title>{% if head_title %}{{ head_title }} - {% endif %}pyAggr3g470r</title>
+ <script src="{{ url_for('.static', filename = 'js/jquery.js') }}"></script>
+
<link rel="shortcut icon" href="{{ url_for('.static', filename='img/favicon.png') }}" />
<!-- Bootstrap core CSS -->
@@ -162,8 +164,6 @@ deployed on Heroku or on a traditional server." />
<!-- Bootstrap core JavaScript -->
<!-- Placed at the end of the document so the pages load faster -->
- <!-- Make sure to add jQuery - download the most recent version at http://jquery.com/ -->
- <script src="{{ url_for('.static', filename = 'js/jquery.js') }}"></script>
<script src="{{ url_for('.static', filename = 'js/bootstrap.js') }}"></script>
</body>
</html>
bgstack15