templates: add new gadjo-css block (#25930)

This commit is contained in:
Frédéric Péters 2018-08-20 13:15:55 +02:00
parent eb0066081b
commit 426bc1a844
1 changed files with 6 additions and 4 deletions

View File

@ -3,18 +3,20 @@
<head>
<meta charset="utf-8"/>
<title>{% block page-title %}{% endblock %}</title>
<link rel="stylesheet" type="text/css" media="all" href="{% static "css/gadjo.css" %}?{% start_timestamp %} "/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
{% block gadjo-css %}
<link rel="stylesheet" type="text/css" media="all" href="{% static "css/gadjo.css" %}?{% start_timestamp %} "/>
{% block css %}
<link rel="stylesheet" type="text/css" media="all" href="{% static "css/style.css" %}?{% start_timestamp %}"/>
{% endblock %}
{% endblock %}
{% block gadjo-js %}
<script src="{% xstatic 'jquery' 'jquery.min.js' %}"></script>
<script src="{% xstatic 'jquery-ui' 'jquery-ui.min.js' %}"></script>
<script src="{% static "js/gadjo.js" %}?{% start_timestamp %}"></script>
{% endblock %}
{{ media }}
{% block css %}
<link rel="stylesheet" type="text/css" media="all" href="{% static "css/style.css" %}?{% start_timestamp %}"/>
{% endblock %}
{% block extrascripts %}
{% endblock %}
</head>