-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
template.html
99 lines (93 loc) · 4.44 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>$title$</title>
<meta name="description" content="$description$" />
<meta property="og:url" content="$url$" />
<meta property="og:type" content="website" />
<meta property="og:title" content="$title$" />
<meta property="og:description" content="$description$" />
<meta property="og:image" content="$url$/img/unicorn-social.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="devpsyops.com" />
<meta property="twitter:url" content="$url$" />
<meta name="twitter:title" content="$title$" />
<meta name="twitter:description" content="$description$" />
<meta name="twitter:image" content="$url$/img/unicorn-social.png" />
<meta property="og:site_name" content="$title$" />
<meta name="twitter:image:alt" content="Mystical psychic unicorn here to help you" />
<meta name="twitter:site" content="@chrisns" />
<title>$title$</title>
<script src="https://cdn.tailwindcss.com/3.3.3"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-46CB6HKF14"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-46CB6HKF14");
</script>
</head>
<body class="dark bg-[url('img/galaxy-background/4.jpg')] bg-no-repeat bg-cover bg-fixed bg-[#222842]">
<div class="grid place-items-center space-y-4">
<div
class="text-white relative bg-cover bg-center bg-no-repeat h-[40rem] w-full max-w-[1024px] rounded-b-3xl border-2 border-t-0 border-white-600 drop-shadow-2xl shadow-inner align-text-bottom bg-[url('img/unicorn.png')]"
>
<div class="bg-black/50 bottom-0 absolute w-full rounded-b-3xl backdrop-blur-sm">
<h1 class="text-6xl text-center drop-shadow-[0_1.2px_1.2px_rgba(0,0,0,0.8)]">$title$</h1>
<p class="text-2xl text-center drop-shadow-[0_1.8px_1.8px_rgba(0,0,0,1)]">$subtitle$</p>
</div>
</div>
$body$
<footer
class="p-3 relative dark:text-white dark:bg-black/50 bg-white/90 backdrop-blur w-full max-w-[1024px] drop-shadow-2xl shadow-inner align-text-bottom rounded-3xl border-2 border-slate-700 columns-3 leading-8"
>
<a href="$repo$/edit/main/README.md" class="dark:fill-white hover:fill-slate-300">
<svg height="32" aria-hidden="true" viewBox="0 0 16 16" version="1.1" width="32">
<path
d="M8 0c4.42 0 8 3.58 8 8a8.013 8.013 0 0 1-5.45 7.59c-.4.08-.55-.17-.55-.38 0-.27.01-1.13.01-2.2 0-.75-.25-1.23-.54-1.48 1.78-.2 3.65-.88 3.65-3.95 0-.88-.31-1.59-.82-2.15.08-.2.36-1.02-.08-2.12 0 0-.67-.22-2.2.82-.64-.18-1.32-.27-2-.27-.68 0-1.36.09-2 .27-1.53-1.03-2.2-.82-2.2-.82-.44 1.1-.16 1.92-.08 2.12-.51.56-.82 1.28-.82 2.15 0 3.06 1.86 3.75 3.64 3.95-.23.2-.44.55-.51 1.07-.46.21-1.61.55-2.33-.66-.15-.24-.6-.83-1.23-.82-.67.01-.27.38.01.53.34.19.73.9.82 1.13.16.45.68 1.31 2.69.94 0 .67.01 1.3.01 1.49 0 .21-.15.45-.55.38A7.995 7.995 0 0 1 0 8c0-4.42 3.58-8 8-8Z"
/>
</svg>
</a>
<div class="text-center whitespace-nowrap">
<a class="hover:text-slate-300" href="https://cns.me">cns.me</a
> <a class="hover:text-slate-300" href="$repo$/blob/main/LICENSE">© 2023</a>
</div>
<div class="text-right">
<a class="hover:text-slate-300" href="https://talks.cns.me">Talks</a>
</div>
</footer>
</div>
<a class="absolute right-0 top-0" href="$repo$/fork"
><img
decoding="async"
width="149"
height="149"
src="https://github.blog/wp-content/uploads/2008/12/forkme_right_darkblue_121621.png?resize=149%2C149"
class="attachment-full size-full"
alt="Fork me on GitHub"
loading="lazy"
data-recalc-dims="1"
/></a>
</body>
<style type="text/tailwindcss">
h2 {
@apply text-2xl;
}
h3 {
@apply text-xl font-bold;
}
a {
@apply hover:text-slate-500 underline;
}
ul {
@apply pl-5 list-disc list-outside space-y-2;
}
.article {
@apply dark:text-white p-3 relative dark:bg-black/50 bg-white/90 backdrop-blur w-full max-w-[1024px] drop-shadow-2xl shadow-inner align-text-bottom rounded-3xl border-2 border-slate-700 space-y-4;
}
</style>
</html>