-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.html
32 lines (32 loc) · 1.75 KB
/
template.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Emmy.js</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="author" content="Emmanuel Norambuena">
<meta name="title" content="Emmy.js">
<meta name="generator" content="Emmy.js">
<meta name="description" content="Emmy.js is a simple and lightweight JavaScript library for building web applications using functional Web Components">
<meta name="keywords" content="emmy.js, web components, functional, functional web components, custom elements, functional custom elements, library, framework, JavaScript">
<meta name="robots" content="index,follow">
<meta name="theme-color" content="#0F172A">
<link rel="icon" href="./favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="./styles/index.css">
</head>
<body class="antialiased h-screen w-full flex flex-col justify-center items-center dark:bg-slate-900 dark:text-white bg-white text-slate-900">
<div class="flex flex-col justify-center items-center space-y-3 text-center w-full h-full">
{content}
</div>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/styles/default.min.css">
<script src="https://cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/highlight.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/languages/javascript.min.js"></script>
<link rel="stylesheet" href="https://emmyjs.pages.dev/dracula-modified.css">
<script type="module">
import JSConfetti from "js-confetti"
hljs.highlightAll()
const jsConfetti = new JSConfetti()
jsConfetti.addConfetti()
</script>
</body>
</html>