forked from ngerakines/commitment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (47 loc) · 978 Bytes
/
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
<html>
<head>
<title>Commit Message Generator</title>
<link rel="author" href="/humans.txt" />
<style>
body {
text-align: center;
margin: 1em 0 0 0;
vertical-align: middle;
font-family: 'Lucida Console', 'Courier New';
font-size: 26pt;
font-style: normal;
text-shadow: none;
text-decoration: none;
text-transform: none;
letter-spacing: 0;
word-spacing: 0;
line-height: 1.2;
}
#content {
width: 760px;
text-align: left;
margin: 1em auto;
}
.permalink {
font-size: 50%;
color: #ddd;
}
.permalink a {
text-decoration: none;
color: inherit;
}
.permalink a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div id="content">
<p>{% raw message %}</p>
<p class="permalink">
[<a href="/{{ message_hash }}">permalink</a>]
</p>
</div>
</body>
<!-- Like what you see? http://github.com/ngerakines/commitment -->
</html>