aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/layout.html
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-06-29 00:05:41 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-06-29 00:05:41 +0200
commit1961a9776846d63fc5e71848552b338850225f35 (patch)
treec36f7acee972191531d0a95933c9831b17772f6d /pyaggr3g470r/templates/layout.html
parentDelete article from the Whoosh indew when article has been deleted via the RE... (diff)
downloadnewspipe-1961a9776846d63fc5e71848552b338850225f35.tar.gz
newspipe-1961a9776846d63fc5e71848552b338850225f35.tar.bz2
newspipe-1961a9776846d63fc5e71848552b338850225f35.zip
A little bit more JavaScript.
Diffstat (limited to 'pyaggr3g470r/templates/layout.html')
-rw-r--r--pyaggr3g470r/templates/layout.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/pyaggr3g470r/templates/layout.html b/pyaggr3g470r/templates/layout.html
index 10b802a2..6f159143 100644
--- a/pyaggr3g470r/templates/layout.html
+++ b/pyaggr3g470r/templates/layout.html
@@ -10,7 +10,7 @@ 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') }}" />
@@ -164,6 +164,8 @@ deployed on Heroku or on a traditional server." />
<!-- Bootstrap core JavaScript -->
<!-- Placed at the end of the document so the pages load faster -->
+ <script src="{{ url_for('.static', filename = 'js/jquery.js') }}"></script>
<script src="{{ url_for('.static', filename = 'js/bootstrap.js') }}"></script>
+ <script src="{{ url_for('.static', filename = 'js/articles.js') }}"></script>
</body>
</html>
bgstack15