-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.html
More file actions
51 lines (41 loc) · 2.08 KB
/
Copy pathsample.html
File metadata and controls
51 lines (41 loc) · 2.08 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 lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Questionnaires</title>
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.1/normalize.min.css" />
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" />
<link rel="stylesheet" href="css/questionnaires.css" />
</head>
<body>
<div id="pageContent" class="container"></div>
<script type="text/template" id="layout">
<div id="pageHeader">pageHeader</div>
<div id="testingArea">testingArea </div>
</script>
<script type="text/template" id="template_headerView">
<button id="btnPrev" class="btn btn-info col-sm-1 pull-left"><</button>
<div id="summary" class="col-sm-5 center-block"> Question <span id="index"></span> of <%= total %> </div>
<button id="btnNext" class="btn btn-info col-sm-1 pull-right">></button>
</script>
<script type="text/template" id="template_testView">
<h1 data-id="question"><%= question %>?</h1>
<ul data-id="choices" class="list_style_none"></ul>
</script>
<script type="text/template" id="template_multipleChoice">
<input type="radio" name="choice" value="<%= value %>"><%= text %></input>
</script>
<script type="text/template" id="template_score">
<h3> Final Grade: <%= correct %> / <%= total %></h3>
</script>
<script src="http://code.jquery.com/jquery-1.9.0.js"></script>
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js" ></script>
<script src="http://underscorejs.org/underscore-min.js" ></script>
<script src="http://backbonejs.org/backbone-min.js" ></script>
<script src="js/vendors/backbone.marionette.js" ></script>
<script src="js/vendors/backbone.stickit.min.js" ></script>
<script src="js/questionnaires.app.js" ></script>
<script src="js/questionnaires.marionette.js" ></script>
<script src="js/questionnaires.layout.js" ></script>
</body>
</html>