-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (32 loc) · 1.12 KB
/
index.html
File metadata and controls
36 lines (32 loc) · 1.12 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>issue.md website</title>
<link rel="stylesheet" href="//cdn.jsdelivr.net/g/bootswatch(cosmo/bootstrap.min.css)">
<style>
body {
margin-top: 1em;
}
.hidden {
display: none !important;
}
</style>
</head>
<body>
<div class="container hidden" data-bind="css: { hidden: !loaded() }">
<div class="row">
<div class="col-sm-12 text-center padding-top-large">
<a href="https://github.com/issuemd">
<div><img src="img/issuemd-logo.png" alt="issue md logo"></div>
<div>fork me on github...</div>
</a>
<small data-bind="if: loaded">client: <span data-bind="text: config.client().version"></span>, server: <span data-bind="text: config.server().version"></span></small>
</div>
</div>
</div>
<script src="//cdn.jsdelivr.net/g/jquery@2,underscorejs,knockout"></script>
<script src="app.js"></script>
</body>
</html>