-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
template-user.html
61 lines (61 loc) · 2.99 KB
/
template-user.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
<!doctype html>
<html lang="::language::">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>::metatitle::</title>
<meta name="author" content="::author::" />
<meta name="description" content="::metaDescription::" />
<meta name="theme-color" content="#FFFFFF" />
<meta property="og:title" content="::metatitle::" />
<meta property="og:site_name" content="::siteName::" />
<meta property="og:description" content="::metaDescription::" />
<meta property="og:url" content="::metaURL::" />
<meta property="og:image" content="::icon::" />
<meta property="og:type" content="profile" />
<meta property="profile:first_name" content="::author::" />
<meta property="profile:username" content="::username::" />
<meta name="twitter:title" content="::metatitle::" />
<meta name="twitter:description" content="::metaDescription::" />
<meta name="twitter:creator" content="::metaTwitterCreator::" />
<meta name="twitter:site" content="::metaTwitterSite::" />
<meta name="twitter:domain" content="::metaDomain::" />
<meta name="twitter:image" content="::icon::" />
<meta name="twitter:card" content="summary" />
<link rel="icon" href="::icon::" type="image/png">
<link rel="alternate" type="application/rss+xml" title="Subscribe" href="::metaRSS::" />
<link rel="alternate" type="application/atom+xml" title="Subscribe" href="::metaAtom::" />
<link rel="alternate" type="application/feed+json" title="Subscribe" href="::metaJson::" />
<link rel="canonical" href="::metaURL::" />
<link rel="manifest" href="/manifest.json" />
<link type="text/css" rel="stylesheet" href="/css/tailwind.min.css">
<link type="text/css" rel="stylesheet" href="/css/index.css">
::analytics::
<script type="application/ld+json">
::jsondl::
</script>
</head>
<body class="bg-gray-50">
<div class="relative bg-gray-50 px-6 pt-8 pb-5 lg:px-8 lg:pt-16">
<div class="absolute inset-0">
<div class="h-1/3 bg-gray-50 sm:h-2/3"></div>
</div>
<div class="relative mx-auto max-w-7xl">
<div class="text-center">
<a href="::authorURL::"><h1 id="title" class="text-3xl font-bold tracking-tight text-gray-900 sm:text-4xl">::title::</h1></a>
<p id="description" class="mx-auto mt-3 max-w-2xl text-xl text-gray-500 sm:mt-4">::description::</p>
<div id="social-media" class="mt-2 flex justify-center space-x-6 max-w-7xl mx-auto">::social::</div>
</div>
<div class="mt-5 text-center">
<input type="text" name="search" id="search" class="mx-auto border text-gray-500 border-gray-200 bg-gray-50 w-full max-w-lg lg:max-w-none rounded-lg px-4 py-2 shadow-lg text-xl focus:outline-none" placeholder="Search" enterkeyhint="search" />
</div>
<div id="post" class="mx-auto mt-5 grid max-w-lg gap-5 lg:max-w-none lg:grid-cols-3">
::post::
</div>
</div>
</div>
<script src="/js/default-functions.js"></script>
<script src="/creator/::username::/metadata.js"></script>
<script src="/js/user.js"></script>
</body>
</html>