-
Notifications
You must be signed in to change notification settings - Fork 0
/
comunidade.html
114 lines (94 loc) · 4.62 KB
/
comunidade.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Comunidade</title>
<link rel="stylesheet"
href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/11.3.1/styles/default.min.css">
<link rel="stylesheet" href="./assets/css/synth-midnight-terminal-dark.css">
<!-- <link rel="stylesheet" href="./assets/css/monokai.css"> -->
<link rel="stylesheet" href="./assets/css/reset.css">
<link rel="stylesheet" href="./assets/css/all.css">
<link rel="stylesheet" href="./assets/css/base.css">
<link rel="stylesheet" href="./assets/css/header.css">
<link rel="stylesheet" href="./assets/css/nav.css">
<link rel="stylesheet" href="./assets/css/community.css">
<link rel="stylesheet" href="./assets/css/responsive_mobile.css">
<link rel="stylesheet" href="./assets/css/responsive_tablet.css">
</head>
<body>
<header class="header__container">
<img class="header__logo" src="imagens/Logo-Alura.png" alt="Logotipo AluraDev" header-logo>
<input class="header__search" type="text" placeholder="Busque por algo" search-bar>
<button class="header__author">
<img class="header__author__photo" src="imagens/Foto_Usuario_2x.png" alt="Foto usuario">
<p class="header__author__name">Harry</p>
</button>
<!-- MOBILE NAV OPEN -->
<div class="nav__mobile__searchSpace">
<i class="fas fa-search fa-2x nav__mobile-search" btn-mobile-search></i>
<i class="fas fa-times fa-2x nav__mobile-closeSearchIcon" btn-mobile-close-search>
</i>
</div>
<div class="nav__mobile__header" >
<i class="fas fa-bars fa-2x nav__mobile-openIcon" btn-mobile-open></i>
</div>
</header>
<main>
<div class="main__container">
<!-- NAV -->
<div class="nav__container">
<h1 class="title">Menu</h1>
<ul class="nav__list">
<li>
<a class="nav__li" href="index.html">
<i class="fas fa-code nav__list-icon" alt="icone de editor de código">
</i>Editor de Código
</a>
</li>
<li>
<a class="nav__li nav__li--active" href="comunidade.html">
<i class="fas fa-users nav__list-icon nav__list-icon--active" alt="icone de comunidade">
</i>Comunidade
</a>
</li>
</ul>
</div>
<!-- CONTAINER-->
<div class="community__container" js-community-container>
</div>
<!-- MENU MOBILE -->
<nav class="nav__mobile__menu" mobile-menu>
<ul class="nav__mobile__ul">
<i class="fas fa-times fa-2x nav__mobile-closeIcon" btn-mobile-close>
</i>
<img class="mobile__logo" src="imagens/Header/Logo.svg" alt="Logotipo AluraDev">
<hr>
<button class="mobile__author">
<img class="mobile__author__photo" src="imagens/Foto_Usuario_2x.png" alt="Foto usuario">
<p class="mobile__author__name">Harry
</p>
</button>
<hr>
<!-- note - to change focus of current active page menu and others, you need to give the current page the a class nav__li--active and give the i class nav__list-icon--active -->
<li class="nav__mobile-liPadding">
<a class="nav__li" href="index.html">
<i class="fas fa-code nav__list-icon" alt="Acessar pagina do editor de código"></i>Editor de Código</a>
</li>
<li class="nav__mobile-liPadding">
<a class="nav__li nav__li--active" href="comunidade.html">
<i class="fas fa-users nav__list-icon nav__list-icon--active" alt="Acessar pagina da comunidade"></i>Comunidade
</a>
</li>
</ul>
</nav>
</main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.3.1/highlight.min.js"></script>
<script src="./js/createCardCommunity.js"></script>
<script src="./js/mobileMenu.js"></script>
<script src="./js/likeSystem.js"></script>
<script>hljs.highlightAll()</script>
</body>
</html>