-
Notifications
You must be signed in to change notification settings - Fork 199
/
Copy pathindex.html
46 lines (46 loc) · 1.29 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Commit Message Generator</title>
<link rel="author" href="/humans.txt" />
<style>
body {
font-family: 'Lucida Console', 'Courier New', monospace;
font-size: 26pt;
line-height: 1.2em;
}
#content {
width: 760px;
text-align: left;
margin: 1em auto;
}
.permalink {
font-size: .5em;
color: #ddd;
line-height: 1em;
}
.permalink a {
text-decoration: none;
color: inherit;
}
.permalink a:hover {
text-decoration: underline;
}
</style>
<meta name="description" content="{{ message }}">
<meta property="og:title" content="Commit Message Generator" />
<meta property="og:description" content="{{ message }}" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.whatthecommit.com/{{ message_hash }}" />
</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? https://github.com/ngerakines/commitment -->
</html>