Skip to content

Commit ba8ea40

Browse files
committed
wip: temporary graphics update
1 parent d852d89 commit ba8ea40

File tree

5 files changed

+478
-17
lines changed

5 files changed

+478
-17
lines changed

app/templates/layout.html

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{% load static %}
2-
32
<!DOCTYPE html>
43
<html lang="pt-br">
54

@@ -10,6 +9,9 @@
109
<title>{% block title %}Layout{% endblock %}</title>
1110

1211
<link rel="icon" href="{% static 'assets/images/logo-morea-ds-noname.ico' %}" type="image/png">
12+
13+
<!-- Adicionado para estilizar o seletor e os alertas do dashboard -->
14+
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
1315

1416
<link rel="stylesheet" href="{% static 'css/layout/index.css' %}" />
1517
<link rel="stylesheet" href="{% static 'css/layout/layout.css' %}" />
@@ -56,8 +58,8 @@
5658

5759
<label class="header__labelMenuMobile" for="header__chekboxMenuMobile">
5860
<span class="
59-
material-symbols-outlined
60-
header__iconMenu">
61+
material-symbols-outlined
62+
header__iconMenu">
6163
menu
6264
</span>
6365
</label>
@@ -69,8 +71,11 @@
6971
<a href="{% url 'Members' %}" class="header__options">Membros</a>
7072
<a href="{% url 'News' %}" class="header__options">Novidades</a>
7173
</div>
74+
75+
<div class="content home__content">
76+
{% block content %}{% endblock %}
7277
</div>
73-
<div class="content home__content">{% block content %}{% endblock %}</div>
78+
7479
<div class="footer">
7580
<div>
7681
<img class="footer__logo" src="{% static 'assets/images/logo-ifs.png' %}" alt="Logo IFS" />
@@ -79,6 +84,7 @@
7984
<p>Todos direitos reservados MOREA 2024.</p>
8085
</div>
8186

87+
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
8288
<script src="{% static 'js/menu.js' %}"></script>
8389
{% block scriptsCustom %}{% endblock %}
8490
</body>

0 commit comments

Comments
 (0)