-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (50 loc) · 1.91 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>🐾 Woofer</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="main row text-center">
<h1>Woofer 🐾</h1>
<div class="input-group pull-right">
<input id="woof-text" type="text" class="form-control" placeholder="Type something here...">
<span class="input-group-btn">
<button id="woof-button" class="btn btn-primary" type="button">Woof!</button>
</span>
</div>
</div>
<div class="page-header row">
<h4>Recent woofs</h4>
</div>
<div id="woofs"></div>
</div>
<script type="text/javascript" src="https://momentjs.com/downloads/moment.min.js"></script>
<script src="https://www.gstatic.com/firebasejs/3.8.0/firebase.js"></script>
<script type="text/javascript" src="woofer-ui.js"></script>
<script type="text/javascript" src="woofer-db.js"></script>
<template id="woof-template">
<div class="row">
<span class="pull-right">
<button type="button" class="close btn-delete" aria-label="Delete">
<small><span class="glyphicon glyphicon-remove" aria-hidden="true"></span></small>
</button>
<button type="button" class="close btn-edit" aria-label="Edit">
<small><span class="glyphicon glyphicon-pencil" aria-hidden="true"></span></small>
</button>
</span>
<span class="woof">
<div class="text show"></div>
<div class="hidden">
<input type="text" class="form-control">
<small>Press Enter to save or Escape to cancel.</small>
</div>
<span class="created-at"></span>
</span>
</div>
</template>
</body>
</html>