-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtools.html
More file actions
87 lines (79 loc) · 2.72 KB
/
tools.html
File metadata and controls
87 lines (79 loc) · 2.72 KB
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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title id="headTitle">Catálogo de Ferramentas - DevUtils</title>
<meta
id="metaDescription"
name="description"
content="Ferramentas utilitárias para desenvolvedores. Sem rastreio, sem propaganda. Só utilidade."
/>
<meta id="ogTitle" property="og:title" content="Catálogo - DevUtils" />
<meta
id="ogDescription"
property="og:description"
content="Catálogo de ferramentas rápidas, úteis e sem rastreio."
/>
<meta
id="twitterTitle"
name="twitter:title"
content="Catálogo - DevUtils"
/>
<meta
id="twitterDescription"
name="twitter:description"
content="Ferramentas úteis para devs, sem rastreio."
/>
<meta name="author" content="DevUtils" />
<meta name="robots" content="index, follow" />
<meta
property="og:image"
content="https://devutils.tools/assets/images/logo.png"
/>
<meta property="og:url" content="https://devutils.tools/tools.html" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:image"
content="https://devutils.tools/assets/images/logo.png"
/>
<link rel="icon" href="https://devutils.tools/ico.png" />
<script type="module" src="/src/tools-catalog.js" defer></script>
</head>
<body
class="pt-20 bg-white text-gray-900 dark:bg-gray-900 dark:text-white font-sans"
>
<header
class="fixed top-0 w-full z-50 bg-gray-200 dark:bg-gray-800 text-gray-900 dark:text-white p-4 shadow"
>
<div
class="mx-auto flex items-center justify-between"
id="header-placeholder"
></div>
</header>
<nav
id="mobileMenu"
class="bg-gray-200 dark:bg-gray-800 text-gray-900 dark:text-white p-4 hidden border-t border-gray-200 dark:border-gray-700 md:hidden"
></nav>
<main class="p-4 mt-4 max-w-5xl mx-auto">
<div class="mb-4 d-block">
<input
id="search"
type="text"
placeholder="🔍 Buscar ferramenta..."
data-i18n-placeholder="sidebar.search"
class="w-full p-2 rounded border border-gray-300 dark:border-gray-600 bg-white dark:bg-gray-800 text-gray-900 dark:text-white mb-6"
/>
<div class="flex justify-between items-center mb-2 mt-2">
<span
id="toolsCount"
class="text-sm text-gray-500 dark:text-gray-400"
></span>
</div>
</div>
<div id="toolsList" class="space-y-6 mt-4 d-block"></div>
</main>
<div id="footer-placeholder"></div>
</body>
</html>