Created
June 17, 2014 12:03
-
-
Save noisy/a1effa0955ca7658a1eb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>{% block title %}eGazeciarz{% endblock title %}</title> | |
| <link href="{% static "css/style.css" %}" rel="stylesheet" type="text/css"> | |
| {% if is_dev %} | |
| <link href="{% static "css/bootstrap-3.0.css"%}" rel="stylesheet" media="screen"> | |
| {% else %} | |
| <link href="{% static "css/bootstrap-min-3.0.css"%}" rel="stylesheet" media="screen"> | |
| {% endif %} | |
| {% block css %}{% endblock css %} | |
| {% if is_dev %} | |
| <script src="{% static "js/jquery-1.10.2.js" %}"</script> | |
| {% else %} | |
| <script src="{% static "js/jquery-min-1.10.2.js" %}"</script> | |
| {% endif %} | |
| {% block js %} {% endblock js %} | |
| </head> | |
| <body> | |
| {% block body %}{% endblock body %} | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment