forked from indieweb/blank-gh-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (36 loc) · 1.48 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
<!DOCTYPE html>
<html>
<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">
<!-- replace the below link with what aperture.p3k.io gives you after signing-in.
(Details: https://indieweb.org/Microsub#Getting_Started)
In summary:
1. sign in to https://aperture.p3k.io/login with your domain
2. you will see a <link> tag displayed on your dashboard
3. copy that <link> tag that looks like:
<link rel="microsub" href="https://aperture.p3k.io/microsub/000">
after this HTML comment. -->
<title>Katharinas Website</title>
</head>
<body>
<h1>My New Website</h1>
<div class="h-card">
<p>
Hi, my name is <span class="p-name">Katharina</span> and I am a human on the Internet.
</p>
<p>
You can find me on other websites below:
</p>
<ul>
<!-- replace _mygithubid_ with your GitHub username -->
<li><a class="u-url" href="https://github.com/katharinabrx" rel="me">@katharinabrx</a></li>
<!-- replace _mytwitterid_ with your Twitter username (if you have one, if not, delete the <li>…</li>) -->
<li><a class="u-url" href="https://twitter.com/katharinabrx" rel="me">@katharinabrx</a></li>
</ul>
</div>
</body>
</html>