]> gitweb.fperrin.net Git - djsite.git/blob - quotes/templates/quotes/base.html
Use jQuery for some effects
[djsite.git] / quotes / templates / quotes / base.html
1 <!DOCTYPE html>
2 <html>
3   <head>
4     {% load staticfiles %}
5     <link rel="stylesheet" type="text/css" href="{% static 'quotes/style.css' %}" />
6     <script src="{% static 'js/jquery.js' %}"></script>
7     <script src="{% static 'quotes/quotes.js' %}"></script>
8     <title>{% block title %}{% endblock %}</title>
9   </head>
10   <body>
11     {% block body %}
12     {% endblock %}
13   </body>
14 </html>