-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin-list-page.html
More file actions
52 lines (51 loc) · 1.89 KB
/
plugin-list-page.html
File metadata and controls
52 lines (51 loc) · 1.89 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<title>
ComBot Plugin List
</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" type="text/css"/>
<link rel="stylesheet" href="css/main.css" type="text/css"/>
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="https://www.gstatic.com/firebasejs/4.10.0/firebase.js"></script>
<script>
// Initialize Firebase
var config = {
apiKey: "AIzaSyDMtD_eM0cebwnJWLXynMLige850l28lCg",
authDomain: "plugin-combot.firebaseapp.com",
databaseURL: "https://plugin-combot.firebaseio.com",
projectId: "plugin-combot",
storageBucket: "plugin-combot.appspot.com",
messagingSenderId: "1011557150803"
};
firebase.initializeApp(config);
</script>
<script src="js/plugin-list.js"></script>
</head>
<body>
<div class="header">
<!-- Everything that goes before the main content -->
<div class="hero tall">
<a href="./index.html"><h1>ComBot</h1></a>
</div>
</div>
<div class="content">
<h2>Plugin List</h2>
<div class="container-fluid">
<div class="row">
<div class="col-2">Plugin Name</div>
<div class="col-6">Plugin Description</div>
<div class="col-4">Plugin Tags</div>
</div>
<div class="row">
<!-- Actual body / content -->
<div class="col-12" id="plugin-list">
</div>
</div>
</div>
</div>
</body>
</html>