forked from pages-themes/cayman
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
76 lines (70 loc) · 2.35 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="description"
content="Run batch tests on humans for Formula Student entry tests."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Race UP | Yentl</title>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700'
rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/style.css?">
<link rel="icon" type="image/png" href="logo_small.png">
</head>
<body>
<section class="page-header">
<h1 class="project-name">Yentl | Race Up</h1>
<h2 class="project-tagline">Run batch tests on humans before Formula Student
entry tests.</h2>
</section>
<section class="main-content">
<ol>
<li>Create a new test <a href="new.html">here</a></li>
<li>Take the test <a href="test.html">here</a></li>
<li>See how you did <a href="finish.html">here</a></li>
</ol>
<h3>As to how to prepare the input files ...</h3>
<ol>
<li>Prepare a <code>.xlsx</code> file like the <a
href="https://raw.githubusercontent.com/raceup/yentl/master/extra/questions.xlsx">example</a>.
</li>
<li>The table should have this form (obviously there can be many options
per question, not just 4). <strong>Important</strong>: you must
include a header with labels.
</li>
</ol>
<table>
<thead>
<tr>
<th>question</th>
<th>right answer</th>
<th>other possible right answer (leave blank if there isn't)</th>
<th>wrong answer</th>
<th>wrong answer</th>
</tr>
</thead>
<tbody>
<tr>
<td>What’s 1 + 1?</td>
<td>2</td>
<td></td>
<td>I don’t know</td>
<td>4</td>
</tr>
<tr>
<td>How you like Race Up?</td>
<td>I <strong>do</strong> like it!</td>
<td>Very much</td>
<td>No</td>
<td>F*** you!</td>
</tr>
</tbody>
</table>
</section>
<footer class="site-footer">
<span class="site-footer-owner"><a
href="https://github.com/raceup/yentl">yentl</a> is maintained by <a
href="https://github.com/raceup">raceup</a>.</span>
</footer>
</body>
</html>