-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (38 loc) · 1.5 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>{{ settings.metaTitle }}</title>
{{> head }}
<!--- THEMES: in settings.json change 'glitch' to 'gallery', 'menu', or any other theme in the layout/themes folder --->
<link
rel="stylesheet"
type="text/css"
href="/styles/themes/{{settings.theme}}.css"
/>
</head>
<body>
<main>
<div class="wrapper">
<div class="content">
{{> avatar }} {{> name }}
<!--- NEXT STEPS: Want to add a bio or some text? Just add a <p> here: --->
{{#if settings.bio}}
<p>
{{ settings.bio }}
</p>
{{/if }}
<!--- NEXT STEPS: Easy, responsive YouTube/iframe embeds? We've got a helper for that:
<div class="video-wrapper__16-9">
<iframe width="560" height="315" src="https://www.youtube.com/embed/GSP0b85BKmY" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
--->
{{> links }} {{> tweets }} {{> social }}
</div>
</div>
<!-- added to validate with Mastodon, hidden since the link is already in the social section -->
<a rel="me" href="https://mastodon.social/@andypiper" style="visibility: hidden;">.</a>
<!--- FOOTER: You can safely remove the Glitch footer (but tell your friends!) ✂ --->
{{> glitch-footer }}
</main>
</body>
</html>