-
Notifications
You must be signed in to change notification settings - Fork 0
/
base.html
49 lines (38 loc) · 1.02 KB
/
base.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<head>
{% block head_1 %}
{#
Documentation for head_1
Should have <title> tag
#}
Default head 1
{% block head_1_1 %}
{# Documentation for head_1_1: Try: <style> tag #}
head_1_1 default value
{% endblock %}
Default head 2
{% endblock %}
</head>
<body>
{% block simple_block %}
{% endblock %}
{% block before_content %}
{# Documentation for before_content
It should become before content
#}
{% endblock %}
{% block content %}
{# This is the page content =) #}
{% block special_place_for_content %}
{# This is is a special place for content #}
{% block sub_special_content %}
{# SUB SUB SUB !!!! #}
{% endblock %}
<div>teste</div>
{% endblock %}
{% endblock %}
{% block after_content %}
{# Documentation for after_content
It should become after content
#}
{% endblock %}
</body>