Projet

Général

Profil

0001-templates-add-new-gadjo-css-block-25930.patch

Frédéric Péters, 29 août 2018 10:09

Télécharger (1,7 ko)

Voir les différences:

Subject: [PATCH] templates: add new gadjo-css block (#25930)

 gadjo/templates/gadjo/root.html | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)
gadjo/templates/gadjo/root.html
3 3
  <head>
4 4
    <meta charset="utf-8"/>
5 5
    <title>{% block page-title %}{% endblock %}</title>
6
    <link rel="stylesheet" type="text/css" media="all" href="{% static "css/gadjo.css" %}?{% start_timestamp %} "/>
7 6
    <meta name="viewport" content="width=device-width, initial-scale=1">
8 7
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
8
    {% block gadjo-css %}
9
    <link rel="stylesheet" type="text/css" media="all" href="{% static "css/gadjo.css" %}?{% start_timestamp %} "/>
10
      {% block css %}
11
      <link rel="stylesheet" type="text/css" media="all" href="{% static "css/style.css" %}?{% start_timestamp %}"/>
12
      {% endblock %}
13
    {% endblock %}
9 14
    {% block gadjo-js %}
10 15
    <script src="{% xstatic 'jquery' 'jquery.min.js' %}"></script>
11 16
    <script src="{% xstatic 'jquery-ui' 'jquery-ui.min.js' %}"></script>
12 17
    <script src="{% static "js/gadjo.js" %}?{% start_timestamp %}"></script>
13 18
    {% endblock %}
14 19
    {{ media }}
15
    {% block css %}
16
    <link rel="stylesheet" type="text/css" media="all" href="{% static "css/style.css" %}?{% start_timestamp %}"/>
17
    {% endblock %}
18 20
    {% block extrascripts %}
19 21
    {% endblock %}
20 22
  </head>
21
-