|
1 | | -{% load static %} |
2 | | -{% load utils %} |
3 | | - |
4 | | -<!doctype html> |
| 1 | +{% load static utils %}<!doctype html> |
5 | 2 | <html lang="es"> |
6 | 3 | <head> |
7 | 4 | <meta charset="utf-8"> |
8 | | - <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> |
9 | | - <meta name="description" content=""> |
10 | | - <meta name="author" content=""> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 6 | + <meta name="description" content="Python Canarias"> |
| 7 | + <meta name="author" content="Python Canarias"> |
11 | 8 |
|
12 | | - <link rel="icon" href="{{ assets|get_asset_key:'commons/img/favicon.ico' }}"> |
| 9 | + <link rel="icon" href="{% static 'commons/img/favicon.ico' %}"> |
13 | 10 |
|
14 | 11 | <title>{% block title %}{{ organization.name }}{% endblock title %}</title> |
15 | 12 |
|
16 | 13 | <link href="https://fonts.googleapis.com/css?family=Lato:300,400,400i,700" rel="stylesheet"> |
17 | 14 |
|
18 | | - <link rel="stylesheet" href="{{ assets|get_asset_key:'commons/vendor.min.css' }}"> |
19 | | - {% block style %}{% endblock %} |
| 15 | + {% block styles %} |
| 16 | + <link rel="stylesheet" href="{% static 'commons/css/bulma.min.css' %}"> |
| 17 | + {% endblock styles %} |
| 18 | + |
20 | 19 | </head> |
21 | 20 | <body class="{% block body_class %}{% endblock %} has-navbar-fixed-top"> |
22 | | - |
| 21 | + . |
23 | 22 | {% include "header.html" %} |
24 | 23 |
|
25 | 24 | {% block container %} |
26 | 25 |
|
27 | | - {% if messages %} |
28 | | - <div class="messages"> |
29 | | - {% for message in messages %} |
30 | | - <div class="notification {{ message.tags|msgtag_to_bulmaclass }}"> |
31 | | - <button class="delete"></button> |
32 | | - {{ message }} |
33 | | - </div> |
34 | | - {% endfor %} |
35 | | - </div> |
36 | | - {% endif %} |
| 26 | + {% if messages %} |
| 27 | + <div class="messages"> |
| 28 | + {% for message in messages %} |
| 29 | + <div class="notification {{ message.tags|msgtag_to_bulmaclass }}"> |
| 30 | + <button class="delete"></button> |
| 31 | + {{ message }} |
| 32 | + </div> |
| 33 | + {% endfor %} |
| 34 | + </div> |
| 35 | + {% endif %} |
37 | 36 |
|
38 | | - <div class="{% block default_content_class %}container content-page{% endblock %} {% block content_class %}{% endblock %} |
| 37 | + <div class="{% block default_content_class %}container content-page{% endblock %} {% block content_class %}{% endblock %} |
39 | 38 | {% if menu %} |
40 | 39 | is-wide |
41 | 40 | {% endif %} |
|
57 | 56 |
|
58 | 57 | {% include "footer.html" %} |
59 | 58 |
|
60 | | - <script src="{{ assets|get_asset_key:'commons/custom.min.js' }}"></script> |
| 59 | + <script src="{% static 'commons/custom.min.js' %}"></script> |
61 | 60 | {% block js %} |
62 | 61 | {% if current_date.month == 12 and current_date.day >= 21 and current_date.day <= 31 %} |
63 | 62 | <script src="https://app.embed.im/snow.js" defer></script> |
|
0 commit comments