wagtail-enap-designsystem 1.2.1.145__py3-none-any.whl → 1.2.1.146__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of wagtail-enap-designsystem might be problematic. Click here for more details.
- enap_designsystem/blocks/__init__.py +2 -0
- enap_designsystem/blocks/html_blocks.py +88 -0
- enap_designsystem/models.py +81 -13
- enap_designsystem/static/enap_designsystem/blocks/apresentacao_block.css +174 -0
- enap_designsystem/static/enap_designsystem/blocks/cards_section.css +112 -0
- enap_designsystem/static/enap_designsystem/blocks/cards_titles.css +229 -0
- enap_designsystem/static/enap_designsystem/blocks/carousel_images.css +323 -0
- enap_designsystem/static/enap_designsystem/blocks/carousel_responsive.css +522 -0
- enap_designsystem/static/enap_designsystem/blocks/carousel_responsivo_snippet.css +294 -0
- enap_designsystem/static/enap_designsystem/blocks/clientes_block.css +146 -0
- enap_designsystem/templates/enap_designsystem/base.html +8 -1
- enap_designsystem/templates/enap_designsystem/blocks/apresentacao_block.html +17 -13
- enap_designsystem/templates/enap_designsystem/blocks/apresentacao_simple_block.html +3 -3
- enap_designsystem/templates/enap_designsystem/blocks/banner.html +14 -1
- enap_designsystem/templates/enap_designsystem/blocks/banner_logo.html +15 -1
- enap_designsystem/templates/enap_designsystem/blocks/card_block.html +2 -2
- enap_designsystem/templates/enap_designsystem/blocks/cards_section.html +2 -109
- enap_designsystem/templates/enap_designsystem/blocks/cards_titles.html +10 -2
- enap_designsystem/templates/enap_designsystem/blocks/carousel.html +1 -187
- enap_designsystem/templates/enap_designsystem/blocks/carousel_images.html +17 -314
- enap_designsystem/templates/enap_designsystem/blocks/carousel_responsive.html +0 -328
- enap_designsystem/templates/enap_designsystem/blocks/carousel_responsivo_snippet.html +3 -197
- enap_designsystem/templates/enap_designsystem/blocks/clientes_block.html +9 -152
- enap_designsystem/templates/enap_designsystem/blocks/footer_block.html +122 -0
- enap_designsystem/templates/enap_designsystem/blocks/section_block.html +1 -1
- enap_designsystem/templates/enap_designsystem/blocks/video_hero_banner.html +1 -2
- enap_designsystem/templates/enap_designsystem/pages/showcase_components.html +501 -180
- {wagtail_enap_designsystem-1.2.1.145.dist-info → wagtail_enap_designsystem-1.2.1.146.dist-info}/METADATA +1 -1
- {wagtail_enap_designsystem-1.2.1.145.dist-info → wagtail_enap_designsystem-1.2.1.146.dist-info}/RECORD +32 -24
- {wagtail_enap_designsystem-1.2.1.145.dist-info → wagtail_enap_designsystem-1.2.1.146.dist-info}/WHEEL +0 -0
- {wagtail_enap_designsystem-1.2.1.145.dist-info → wagtail_enap_designsystem-1.2.1.146.dist-info}/licenses/LICENSE +0 -0
- {wagtail_enap_designsystem-1.2.1.145.dist-info → wagtail_enap_designsystem-1.2.1.146.dist-info}/top_level.txt +0 -0
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
{% load wagtailcore_tags %}
|
|
1
|
+
{% load wagtailcore_tags wagtailimages_tags %}
|
|
2
|
+
{% load static %}
|
|
2
3
|
<section class="clientes-section">
|
|
3
4
|
<div class="container">
|
|
4
5
|
{# Cabeçalho da seção #}
|
|
@@ -18,13 +19,18 @@
|
|
|
18
19
|
{% if cliente.block_type == 'logo_cliente' %}
|
|
19
20
|
<div class="cliente-logo">
|
|
20
21
|
{% if cliente.value.logo %}
|
|
21
|
-
{% load wagtailimages_tags %}
|
|
22
22
|
{% image cliente.value.logo original as logo_img %}
|
|
23
23
|
<img
|
|
24
24
|
src="{{ logo_img.url }}"
|
|
25
25
|
alt="Logo do cliente"
|
|
26
26
|
class="cliente-logo__imagem"
|
|
27
27
|
/>
|
|
28
|
+
{% else %}
|
|
29
|
+
<img
|
|
30
|
+
src="{% static 'enap_designsystem/blocks/suap/default_1.png' %}"
|
|
31
|
+
alt="Imagem padrão com logo da Enap e fundo verde"
|
|
32
|
+
class="cliente-logo__imagem"
|
|
33
|
+
/>
|
|
28
34
|
{% endif %}
|
|
29
35
|
</div>
|
|
30
36
|
{% endif %}
|
|
@@ -38,153 +44,4 @@
|
|
|
38
44
|
</div>
|
|
39
45
|
{% endif %}
|
|
40
46
|
</div>
|
|
41
|
-
</section>
|
|
42
|
-
|
|
43
|
-
<style>
|
|
44
|
-
.clientes-section {
|
|
45
|
-
padding: 80px 0;
|
|
46
|
-
background: linear-gradient(0deg, #FFFFFF 88%, #F5F7FA 96%);
|
|
47
|
-
position: relative;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.clientes-button{
|
|
51
|
-
margin: 40px auto;
|
|
52
|
-
display: flex;
|
|
53
|
-
justify-content: center;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.clientes-section::before {
|
|
57
|
-
content: '';
|
|
58
|
-
position: absolute;
|
|
59
|
-
top: 0;
|
|
60
|
-
left: 0;
|
|
61
|
-
right: 0;
|
|
62
|
-
bottom: 0;
|
|
63
|
-
background-image: radial-gradient(circle at 20% 20%, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
|
|
64
|
-
background-size: 30px 30px;
|
|
65
|
-
pointer-events: none;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
.container {
|
|
69
|
-
max-width: 1142px;
|
|
70
|
-
margin: 0 auto;
|
|
71
|
-
padding: 0 20px;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
.clientes-header {
|
|
75
|
-
margin-bottom: 60px;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
.clientes-header__titulo {
|
|
79
|
-
font-size: 2.5rem;
|
|
80
|
-
font-weight: 600;
|
|
81
|
-
color: #024248;
|
|
82
|
-
margin-bottom: 16px;
|
|
83
|
-
line-height: 1.2;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
.clientes-section p{
|
|
87
|
-
font-size: 1.125rem;
|
|
88
|
-
color: #333840;
|
|
89
|
-
max-width: 600px;
|
|
90
|
-
margin: 0 auto;
|
|
91
|
-
line-height: 1.6;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
.text-center {
|
|
95
|
-
text-align: center;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
.text-left {
|
|
99
|
-
text-align: left;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
.text-left .clientes-header__subtitulo {
|
|
103
|
-
margin-left: 0;
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
.clientes-grid {
|
|
107
|
-
display: grid;
|
|
108
|
-
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
109
|
-
gap: 40px;
|
|
110
|
-
align-items: center;
|
|
111
|
-
justify-items: center;
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
.cliente-logo {
|
|
115
|
-
padding: 12px;
|
|
116
|
-
height: 120px;
|
|
117
|
-
width: 100%;
|
|
118
|
-
max-width: 200px;
|
|
119
|
-
display: flex;
|
|
120
|
-
align-items: center;
|
|
121
|
-
justify-content: center;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
.cliente-logo__imagem {
|
|
125
|
-
max-width: 100%;
|
|
126
|
-
max-height: 60px;
|
|
127
|
-
width: 100%;
|
|
128
|
-
height: auto;
|
|
129
|
-
object-fit: contain;
|
|
130
|
-
transition: all 0.3s ease;
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
.cliente-logo:hover .cliente-logo__imagem {
|
|
134
|
-
filter: grayscale(0);
|
|
135
|
-
opacity: 1;
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
/* Responsividade */
|
|
139
|
-
@media (max-width: 768px) {
|
|
140
|
-
.clientes-section {
|
|
141
|
-
padding: 60px 0;
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
.clientes-header {
|
|
145
|
-
margin-bottom: 40px;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
.clientes-header__titulo {
|
|
149
|
-
font-size: 2rem;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
.clientes-grid {
|
|
153
|
-
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
|
|
154
|
-
gap: 24px;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
.cliente-logo {
|
|
158
|
-
padding: 24px;
|
|
159
|
-
max-width: 150px;
|
|
160
|
-
height: 100px;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
.cliente-logo__imagem {
|
|
164
|
-
max-height: 50px;
|
|
165
|
-
}
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
@media (max-width: 480px) {
|
|
169
|
-
.clientes-grid {
|
|
170
|
-
grid-template-columns: repeat(2, 1fr);
|
|
171
|
-
gap: 16px;
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
.cliente-logo {
|
|
175
|
-
padding: 20px;
|
|
176
|
-
height: 90px;
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
.cliente-logo__imagem {
|
|
180
|
-
max-height: 40px;
|
|
181
|
-
}
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
/* Variação para muitos logos */
|
|
185
|
-
@media (min-width: 1200px) {
|
|
186
|
-
.clientes-grid {
|
|
187
|
-
grid-template-columns: repeat(5, 1fr);
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
</style>
|
|
47
|
+
</section>
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
{% load static wagtailimages_tags wagtailcore_tags %}
|
|
2
|
+
<!-- Footer -->
|
|
3
|
+
<footer class="footer_generico">
|
|
4
|
+
<div class="footer-content_semana">
|
|
5
|
+
<div class="footer-logo_semana">
|
|
6
|
+
<!-- Logo do Footer -->
|
|
7
|
+
<div class="wrapper-logo-hero_semana">
|
|
8
|
+
{% if value.logo %}
|
|
9
|
+
{% image value.logo width-400 as logo_img %}
|
|
10
|
+
<img src="{{ logo_img.url }}"
|
|
11
|
+
alt="Logos"
|
|
12
|
+
class="logo-image">
|
|
13
|
+
{% endif %}
|
|
14
|
+
</div>
|
|
15
|
+
<div style="height:60px;"></div>
|
|
16
|
+
|
|
17
|
+
<!-- Dados do Evento -->
|
|
18
|
+
<div class="evento-texto">
|
|
19
|
+
{% if value.texto_logo %}
|
|
20
|
+
{{ value.texto_logo }}
|
|
21
|
+
{% endif %}
|
|
22
|
+
</div>
|
|
23
|
+
</div>
|
|
24
|
+
|
|
25
|
+
<!-- Links de Navegação -->
|
|
26
|
+
{% if value.links_1 %}
|
|
27
|
+
<div class="footer-links_generico">
|
|
28
|
+
<p>{{ value.titulo_1 }}</p>
|
|
29
|
+
<ul>
|
|
30
|
+
{% for link in value.links_1 %}
|
|
31
|
+
<li>
|
|
32
|
+
{% if link.value.link_url %}
|
|
33
|
+
<a href="{{ link.value.link_url }}">{{ link.value.title }}</a>
|
|
34
|
+
{% else %}
|
|
35
|
+
<p>{{ link.value.title }}</p>
|
|
36
|
+
{% endif %}
|
|
37
|
+
</li>
|
|
38
|
+
{% endfor %}
|
|
39
|
+
</ul>
|
|
40
|
+
</div>
|
|
41
|
+
{% endif %}
|
|
42
|
+
|
|
43
|
+
{% if value.links_2 %}
|
|
44
|
+
<div class="footer-links_generico">
|
|
45
|
+
<p>{{ value.titulo_2 }}</p>
|
|
46
|
+
<ul>
|
|
47
|
+
{% for link in value.links_2 %}
|
|
48
|
+
<li>
|
|
49
|
+
{% if link.value.link_url %}
|
|
50
|
+
<a href="{{ link.value.link_url }}">{{ link.value.title }}</a>
|
|
51
|
+
{% else %}
|
|
52
|
+
<p>{{ link.value.title }}</p>
|
|
53
|
+
{% endif %}
|
|
54
|
+
</li>
|
|
55
|
+
{% endfor %}
|
|
56
|
+
</ul>
|
|
57
|
+
</div>
|
|
58
|
+
{% endif %}
|
|
59
|
+
|
|
60
|
+
{% if value.links_3 %}
|
|
61
|
+
<div class="footer-links_generico">
|
|
62
|
+
<p>{{ value.titulo_3 }}</p>
|
|
63
|
+
<ul>
|
|
64
|
+
{% for link in value.links_3 %}
|
|
65
|
+
<li>
|
|
66
|
+
{% if link.value.link_url %}
|
|
67
|
+
<a href="{{ link.value.link_url }}">{{ link.value.title }}</a>
|
|
68
|
+
{% else %}
|
|
69
|
+
<p>{{ link.value.title }}</p>
|
|
70
|
+
{% endif %}
|
|
71
|
+
</li>
|
|
72
|
+
{% endfor %}
|
|
73
|
+
</ul>
|
|
74
|
+
</div>
|
|
75
|
+
{% endif %}
|
|
76
|
+
</div>
|
|
77
|
+
</footer>
|
|
78
|
+
|
|
79
|
+
<style>
|
|
80
|
+
.footer_generico{
|
|
81
|
+
background: {{value.cor_fundo}};
|
|
82
|
+
color: {{value.cor_texto}};
|
|
83
|
+
padding: 60px 20px;
|
|
84
|
+
background-size: 40px 40px;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.footer-links_generico p{
|
|
88
|
+
font-size: 20px;
|
|
89
|
+
font-weight: 500;
|
|
90
|
+
color: {{value.cor_texto}};
|
|
91
|
+
margin: 0px;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.footer-links_generico ul{
|
|
95
|
+
margin: 0px;
|
|
96
|
+
padding: 0px;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.footer-links_generico ul li{
|
|
100
|
+
margin: 0px;
|
|
101
|
+
padding: 0px;
|
|
102
|
+
list-style: none;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.footer-links_generico ul li a{
|
|
106
|
+
color: {{value.cor_texto}};
|
|
107
|
+
font-size: 16px;
|
|
108
|
+
font-weight: 400;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.footer-links_generico ul li p{
|
|
112
|
+
color: {{value.cor_texto}};
|
|
113
|
+
font-size: 16px;
|
|
114
|
+
font-weight: 400;
|
|
115
|
+
display: flex;
|
|
116
|
+
align-items: center;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.material-symbols-outlined{
|
|
120
|
+
color: {{value.cor_texto}};
|
|
121
|
+
}
|
|
122
|
+
</style>
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
<!-- Título e subtítulo - só renderiza se houver conteúdo -->
|
|
13
13
|
{% if self.title or self.subtitle %}
|
|
14
14
|
<div class="container-medium">
|
|
15
|
-
<div
|
|
15
|
+
<div>
|
|
16
16
|
<div class="wrapper-text-blue" style="max-width: {{value.max_width}};">
|
|
17
17
|
{% if self.title %}
|
|
18
18
|
<h2 style="color: {{ value.cor_titulo }}" class="h2-blue-large {% if self.custom_class == 'bg-darkgreen' or self.custom_class == 'bg-enap-100' or self.custom_class == 'bg-enap-90' or self.custom_class == 'bg-enap-80' or self.custom_class == 'bg-enap-70' or self.custom_class == 'bg-enap-50' or self.custom_class == 'bg-enap-40' %}white{% endif %}">{{self.title}}</h2>
|