-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathresults.html
More file actions
51 lines (43 loc) · 1.75 KB
/
Copy pathresults.html
File metadata and controls
51 lines (43 loc) · 1.75 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1"> <title>Proj 2 crud</title>
<script
src="https://code.jquery.com/jquery-3.1.1.js"
integrity="sha256-16cdPddA6VdVInumRGo6IbivbERE8p7CQR3HzTBuELA="
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="header">
<ul class="nav nav-pills">
<li role="presentation"><a href="/">Home</a></li>
<li role="presentation"><a href="/teams.html">Teams</a></li>
<li role="presentation"><a href="/roster.html">Roster</a></li>
<li role="presentation" class="active"><a href="/results.html">Results</a></li>
<li role="presentation"><a href="/schedule.html">Schedule</a></li>
</ul>
</div>
<h1>Results</h1>
<!-- <input type="text" placeholder="Enter Results (3-0)" id="results">
<button id="createPost">Create</button>
-->
<div id="posts">
<script id="posts-template" type="text/template">
<ul>
<% posts.forEach(function(post) { %>
<% var teams = post.teams %>
<li><%= teams.teamName + ": " + teams.roster + editButton + xButton%></li>
<% }) %>
</ul>
</div>
<p>Enter your team's Results (for example Q1: 3-0, 1st Place)</p>
</script>
<script src ="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="main.js"></script>
</body>
</html>