Skip to content

Instantly share code, notes, and snippets.

@noisy
Created June 17, 2014 12:03
Show Gist options
  • Select an option

  • Save noisy/a1effa0955ca7658a1eb to your computer and use it in GitHub Desktop.

Select an option

Save noisy/a1effa0955ca7658a1eb to your computer and use it in GitHub Desktop.
<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