1
- <!DOCTYPE html>
2
- < html lang ="pt-br ">
3
- < head >
4
- < meta charset ="UTF-8 ">
5
- < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
6
- < title > Resultado da pesquisa</ title >
7
-
8
- < link href ="https://fonts.googleapis.com/css2?family=Roboto&family=Ubuntu:wght@700&display=swap " rel ="stylesheet ">
9
-
10
- < link rel ="stylesheet " href ="styles/main.css ">
11
- < link rel ="stylesheet " href ="styles/search-results.css ">
12
- < link rel ="stylesheet " href ="styles/responsive.css ">
13
-
14
- </ head >
15
- < body >
16
- < div id ="page-search-results ">
17
-
18
- {% include "partials/page-header.html" %}
19
-
20
- < main >
21
-
22
- < h4 >
23
- < strong > 2 pontos</ strong >
24
- Encontrados</ h4 >
25
-
26
- < div class ="cards ">
27
-
28
- < div class ="card ">
29
- < img src ="https://images.unsplash.com/photo-1528323273322-d81458248d40?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1101&q=80 " alt ="Colectoria ">
30
- < h1 > Colectoria</ h1 >
31
- < h3 > Resíduos eletronicos, lâmpada</ h3 >
32
- < p > Morro Agudo, São Paulo
33
- < br >
34
- Sete de setembro, Centro
35
- < br >
36
- Numero 287
37
- </ p >
38
- </ div >
39
-
40
- < div class ="card ">
41
- < img src ="https://images.unsplash.com/photo-1567393528677-d6adae7d4a0a?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1050&q=80 " alt ="Paperside ">
42
- < h1 > Paperside</ h1 >
43
- < h3 > Papéis e papelão</ h3 >
44
- < p > Morro Agudo, São Paulo
45
- < br >
46
- Sete de setembro, Centro
47
- < br >
48
- Numero 287
49
- </ p >
50
- </ div >
51
-
52
- </ div >
53
-
54
- </ main >
1
+ {% extends "layout.html"%}
2
+
3
+ {% set pageId = "page-search-results" %}
4
+
5
+ {% block title %}
6
+ < title > Resultado da pesquisa</ title >
7
+ {% endblock title %}
8
+
9
+ {% block styles %}
10
+ < link rel ="stylesheet " href ="styles/search-results.css ">
11
+ {% endblock styles %}
12
+
13
+ {% block content %}
14
+
15
+ {% include "partials/page-header.html" %}
16
+
17
+ < main >
18
+
19
+ < h4 >
20
+ < strong > 2 pontos</ strong >
21
+ Encontrados</ h4 >
22
+
23
+ < div class ="cards ">
24
+
25
+ < div class ="card ">
26
+ < img src ="https://images.unsplash.com/photo-1528323273322-d81458248d40?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1101&q=80 " alt ="Colectoria ">
27
+ < h1 > Colectoria</ h1 >
28
+ < h3 > Resíduos eletronicos, lâmpada</ h3 >
29
+ < p > Morro Agudo, São Paulo
30
+ < br >
31
+ Sete de setembro, Centro
32
+ < br >
33
+ Numero 287
34
+ </ p >
35
+ </ div >
36
+
37
+ < div class ="card ">
38
+ < img src ="https://images.unsplash.com/photo-1567393528677-d6adae7d4a0a?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1050&q=80 " alt ="Paperside ">
39
+ < h1 > Paperside</ h1 >
40
+ < h3 > Papéis e papelão</ h3 >
41
+ < p > Morro Agudo, São Paulo
42
+ < br >
43
+ Sete de setembro, Centro
44
+ < br >
45
+ Numero 287
46
+ </ p >
47
+ </ div >
55
48
56
49
</ div >
57
50
58
- </ body >
59
- </ html >
51
+ </ main >
52
+
53
+ {% endblock content %}
0 commit comments