-
Notifications
You must be signed in to change notification settings - Fork 23
/
index.php
78 lines (72 loc) · 1.92 KB
/
index.php
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
<!DOCTYPE html>
<html>
<head>
<title>Micropub</title>
<style type="text/css">
body {
background-color: #fefefe;
font-family: "Helvetica Neue", "Calibri Light", Roboto, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 14pt;
}
.page {
max-width: 500px;
margin: 0 auto;
}
a {
color: #3340A6;
}
a:hover {
color: #5764C7;
}
h1 {
text-align: center;
}
.subtitle {
padding: 20px 30px;
font-size: 16pt;
background-color: #94D61C;
border: 1px #0DBD40 solid;
border-radius: 4px;
}
ul.links {
margin: 0;
margin-top: 20px;
padding: 0;
list-style-type: none;
}
ul.links li {
margin: 0;
padding: 0;
padding-top: 16px;
}
ul.links .main {
text-align: center;
font-size: 18pt;
padding-top: 26px;
padding-bottom: 16px;
}
</style>
</head>
<body>
<div class="page">
<h1>Micropub</h1>
<div class="subtitle">Micropub is an open API standard that is used to create posts on one's own domain using third-party clients.</div>
<ul class="links">
<li class="main">
<a href="https://www.w3.org/TR/micropub/">w3.org/TR/micropub</a>
<br>W3C Recommendation
</li>
<li class="main">
<a href="https://micropub.rocks/">micropub.rocks</a>
<br>
Test suite and debugging utility
</li>
<li class="main"><a href="/implementation-reports/">Implementation Reports</a></li>
<li>The Micropub specification is developed under the <a href="https://www.w3.org/wiki/Socialwg">W3C Social Web Working Group</a>.</li>
<li>The specification was contributed to the W3C by the IndieWeb community. More information and history of the spec can be found on the <a href="https://indieweb.org/micropub">IndieWeb wiki</a>.</li>
</ul>
</div>
</body>
</html>