forked from indieweb/blank-gh-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (61 loc) · 2.49 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="mobile-web-app-capable" content="yes" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
<link rel="token_endpoint" href="https://tokens.indieauth.com/token">
<!-- To use social readers via microsub, follow these steps.
(Details: https://indieweb.org/Microsub#Getting_Started)
1. After publishing this to your domain, sign in to https://aperture.p3k.io/login with your domain
2. You will see a <link> tag displayed on your dashboard that looks like:
<link rel="microsub" href="https://aperture.p3k.io/microsub/000">
3. Copy that <link> tag and paste it after this HTML comment.
4. Publish the updated page!
-->
<title>My New Website</title>
<style>
@media (prefers-color-scheme: dark) {
html { background-color: #111111; color: #fbfbfb; }
a { color: #ca8465; }
}
body {
line-height: 1.6;
font-family: system-ui, -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
text-align: center;
margin: 1rem auto;
min-height: 90vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
img.u-photo { border-radius: 50%; }
ul { padding: 0; list-style: none; }
</style>
</head>
<body>
<!-- Reference for representative h-card properties: https://microformats.org/wiki/h-card -->
<main class="h-card" rel="author">
<!-- Uncomment and add __your_image__ to display a photo!
<img class="u-photo" alt="My profile photo" src="__your_image__" />
-->
<h1>
I'm <span class="p-name">Jane Smith</span>.
</h1>
<p class="p-note">
...and I am a human on the Internet.
</p>
<ul>
<!-- Replace __this_page__ with your domain -->
<li><a class="u-uid u-url" href="__this_page__">My New Website</a></li>
<!-- Update or remove the below links! -->
<!-- Replace _mygithubid_ with your GitHub username in both places on the next line: -->
<li>Github: <a class="u-url" href="https://github.com/_mygithubid_" rel="me">@_mygithubid_</a></li>
<!-- Replace _mytwitterid_ with your Twitter username in both places on the next line: -->
<li>Twitter: <a class="u-url" href="https://twitter.com/_mytwitterid_" rel="me">@_mytwitterid_</a></li>
</ul>
</main>
</body>
</html>