-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
116 lines (113 loc) · 3.95 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8" />
<title>awsBB by awsbb</title>
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible" />
<meta content="Ryan Wilson" name="author" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" href="stylesheets/style.css" />
<link rel="stylesheet" type="text/css" href="stylesheets/loader.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/markdown-it/5.1.0/markdown-it.min.js"></script>
</head>
<body>
<div class="container-fluid">
<div class="row">
<section id="header">
<div class="drop-it">awsBB</div>
<h2 class="project-tagline"></h2>
<div>
<div class="btn-group" role="group" aria-label="...">
<a href="https://github.com/awsbb/awsbb" class="btn">
<i class="fa fa-fw fa-github"></i> View on GitHub
</a>
<a href="https://github.com/awsbb/awsbb/zipball/master" class="btn">
<i class="fa fa-fw fa-file-archive-o"></i> .zip
</a>
<a href="https://github.com/awsbb/awsbb/tarball/master" class="btn">
<i class="fa fa-fw fa-file-archive-o"></i> .tar.gz
</a>
</div>
</div>
</section>
</div>
<div class="row">
<div id="loader" class="load-bar">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-xs-12">
<section id="content" style="display: none;">
<div class="container">
<div class="row">
<div class="col-xs-12">
<div id="error" class="alert alert-warning" role="alert" style="margin-top: 50px; display: none;">
<strong>Hot Damn!</strong>
I couldn't get the README.md contents. Maybe have a look at it here:
<a href="https://github.com/awsbb/awsbb/blob/master/README.md" target="_blank">here</a>.
</div>
<div id="readme" class="main-content"></div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-xs-12">
<footer id="footer" class="site-footer">
<span class="site-footer-owner">
<a href="https://github.com/awsbb/awsbb">awsBB</a> is maintained by
<a href="https://github.com/awsbb">awsbb</a>.
</span>
<span class="site-footer-credits">
This theme was inspired by the
<a href="https://github.com/jasonlong/cayman-theme">Cayman theme</a>; by
<a href="https://twitter.com/jasonlong">Jason Long</a>.
</span>
</footer>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
<script>
((window.gitter = {}).chat = {}).options = {
room: 'awsbb/awsbb'
};
</script>
<script src="https://sidecar.gitter.im/dist/sidecar.v1.js" async defer></script>
</body>
<script>
var md = new markdownit({
html: true,
linkify: true,
typographer: true
});
$(document).ready(function() {
$.get('https://raw.githubusercontent.com/awsbb/awsbb/master/README.md')
.done(function(content) {
$('#readme').html(md.render(content));
setTimeout(function() {
$('#loader').html('');
$('#error').hide();
$('#content').fadeIn();
}, 250);
})
.error(function() {
$('#readme').html('');
setTimeout(function() {
$('#loader').html('');
$('#error').show();
$('#content').fadeIn();
}, 250);
});
});
</script>
</html>