-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathquiz.html
106 lines (98 loc) · 4.17 KB
/
quiz.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{% extends "base.html" %}
{% block title %}
Stack Exchange Simulator Quiz - {{ question.title.text }}
{% endblock %}
{% block extrameta %}
<meta property="og:image" name="twitter:image" itemprop="image primaryImageOfPage"
content="{{ url_for("image",_external=True) }}"/>
<meta name="twitter:domain" content="se-simulator.lw1.at"/>
<meta name="twitter:title" property="og:title" itemprop="title name" content="Stack Exchange Simulator Quiz"/>
<meta name="twitter:description" property="og:description" itemprop="description"
content="Generating fun Stack Overflow and Stack Exchange Questions using Markov Chains">
{% endblock %}
{% block extraclasses %}quiz{% endblock %}
{% block body %}
<header>
<h1>Stack Exchange Simulator Quiz</h1>
</header>
{% if stats.correct <3 %}
<div class="tutorial">
<h3>Tutorial:</h3>
<p>Guess which of the Stack Exchange sites this question could belong to.</p>
{% if difficulty=="easy" %}
<p>There are four possible answers below.</p>
<p>Press <strong>Next</strong> to get to the next Question.</p>
<p>
If you think this is too easy, you can try out
<a href="{{ url_for("quiz",difficulty="hard") }}">the hard quiz</a>
which doesn't have possible answers.
</p>
{% else %}
<p>
Then enter your guess into the textbox below, select the website
and click on <strong>check</strong> to confirm your guess.
</p>
<p>Alternativly you can select a site with the arrow keys and press enter twice to confirm it.</p>
<p>
If you think this is too hard, you can try out
<a href="{{ url_for("quiz",difficulty="easy") }}">the easy quiz</a>
which does have possible answers to choose from.
</p>
{% endif %}
</div>
{% endif %}
{% if difficulty=="easy" %}
<div id="quizchoices" data-id="{{ question.id }}">
{% for choice in choices %}
<button data-id="{{ choice.id }}" data-url="{{ choice.url }}"
style="color: {{ choice.foreground_color }};background-color: {{ choice.background_color }};
{{ ("border: solid 1px " + choice.foreground_color) if choice.background_color and is_light_color(choice.background_color) }}"
>{{ choice.name }}</button>
{% endfor %}
</div>
{% else %}
<div id="quizselector">
<input title="guess the correct site" id="siteselector" data-mode="quiz"
data-id="{{ question.id }}" data-matomo-unmask autocomplete='off'>
<button id="check">Check</button>
</div>
{% endif %}
<div id="result">
<div id="correct">
Correct!
</div>
<div id="incorrect">
Incorrect!
</div>
</div>
<div id="stats">
<div>Total<br><span>{{ stats.total }}</span></div>
<div>Correct<br><span>{{ stats.correct }}</span></div>
<div>Ratio<br><span>{{ '%d' | format((stats.correct / stats.total * 100) if stats.correct > 0 else 0) }}</span>%
</div>
<button id="next">Next</button>
</div>
<header class="siteheader"
style="">
</header>
<h1>{{ question.title.text }}</h1>
<div class="content question">
<div class="vote" data-id="{{ question.id }}" data-type="question">
<a class="up"></a>
<div>{{ question.upvotes - question.downvotes }}</div>
<a class="down"></a>
</div>
<div class="contentbox">
{% for paragraph in question.text.split("\n") %}
<p>{{ paragraph }}</p>
{% endfor %}
<div class="contentfooter">
<div class="authorbox">
asked {{ prettydate(question.datetime) }}
<br>
{{ question.user.username }}
</div>
</div>
</div>
</div>
{% endblock %}