-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtool.html
More file actions
84 lines (75 loc) · 2.4 KB
/
tool.html
File metadata and controls
84 lines (75 loc) · 2.4 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
<!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">Ferramenta - DevUtils</title>
<meta
id="metaDescription"
name="description"
content="Ferramentas rápidas, úteis e sem rastreio."
/>
<meta
id="ogTitle"
property="og:title"
content="DevUtils - Ferramentas para Devs"
/>
<meta
id="ogDescription"
property="og:description"
content="Ferramentas rápidas, úteis e sem rastreio."
/>
<meta
id="twitterTitle"
name="twitter:title"
content="DevUtils - Ferramentas para Devs"
/>
<meta
id="twitterDescription"
name="twitter:description"
content="Ferramentas rápidas, úteis e 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/" />
<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/tool-loader.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="mx-auto mt-4 mb-4 p-4 max-w-5xl" id="toolContainer">
<p class="text-gray-500 dark:text-gray-400" data-i18n="tool.loading">
Carregando ferramenta...
</p>
</main>
<div id="footer-placeholder"></div>
<script>
document.getElementById("menuBtn")?.addEventListener("click", () => {
document.getElementById("mobileMenu")?.classList.toggle("hidden");
});
</script>
</body>
</html>