Advertisement
Vadorequest

Untitled

Sep 8th, 2014
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.90 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3.     <head>
  4.         {% block head %}
  5.             <meta charset="utf-8">
  6.             <title>TW2 - {% block title %}{% endblock %}</title>
  7.  
  8.             {{ url_for('static/js', filename='jquery-1.11.1.min.js') }}
  9.             {{ url_for('static/js', filename='lodash.js') }}
  10.             {{ url_for('static/js', filename='underscore.string.min.js') }}
  11.             {{ url_for('static/js', filename='Chart.js') }}
  12.         {% endblock %}
  13.  
  14.         {# Allow custom JS/Styles files. #}
  15.         {% block styles %}{% endblock %}
  16.         {% block js %}{% endblock %}
  17.     </head>
  18.     <body>
  19.         <div id="content">{% block content %}{% endblock %}</div>
  20.         <div id="footer">
  21.             {% block footer %}
  22.                 &copy; Copyright 2014+ by <a href="http://vadorequest.fr/">Vadorequest</a> and Winterdeath.
  23.             {% endblock %}
  24.         </div>
  25.     </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement