forked from ikyrie/projeto-dive-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
comunidade.html
28 lines (28 loc) · 1.03 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
<!DOCTYPE html>
<html lang="pt-br">
<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>Document</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Space+Mono&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/assets/css/darcula.css">
<link rel="stylesheet" href="/assets/css/comunidade.css">
</head>
<body spellcheck="false">
<main class="main">
<h1 class="titulo">Todos os projetos</h1>
<ul class="todos-projetos js-todos-projetos">
</ul>
</main>
<script src="/assets/js/comunidade.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/10.7.2/highlight.min.js"></script>
<script>
const todosOsCodigos = document.querySelectorAll('code')
todosOsCodigos.forEach(codigo => {
hljs.highlightBlock(codigo)
})
</script>
</body>
</html>