-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (28 loc) · 1.02 KB
/
index.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
50
51
52
53
54
55
56
57
{% extends "layout.html" %}
{% set pageId = "page-home" %}
{% block styles %}
<link rel="stylesheet" href="styles/home.css">
<link rel="stylesheet" href="styles/modal.css">
{% endblock styles %}
{% block content %}
<div class="content">
<header>
<img src="assets/logo.svg" alt="Logomarca">
<a href="create-point">
<span></span>
Cadastre um ponto de coleta
</a>
</header>
<main>
<h1>Seu marketplace de coleta de resíduos</h1>
<p>Ajudamos pessoas a encontrarem pontos de coleta de forma eficiente.</p>
<a href="#"><span></span><strong>Pesquisar pontos de coleta</strong></a>
</main>
</div>
{% endblock content %}
{% block modal %}
{% include "partials/modal.html" %}
{% endblock modal %}
{% block scripts %}
<script src = "scripts/index.js"></script>
{% endblock scripts %}