1html
2 head
3 title= title
4 link(rel="stylesheet", href="/stylesheets/index.css")
5 body
6 div(id="editor-parent")
7 div(id="problem")
8 div(id="statement")
9 div(id="input-format")
10 div(id="output-format")
11 div(id="constraints")
12 div(id="solution")
13 div(id="language-and-timer")
14 select(id="language")
15 for language in languages
16 option(value="" + language.id + "")= language.name
17 h3(id="time-left") Time left:
18 span(id="timer-h")
19 span(id="timer-m")
20 span(id="timer-s")
21 div(id="editor")
22 div(id="input-output")
23 div
24 label(for="custom-input") custom input
25 textarea(id="custom-input")
26 div
27 label(id="result-label", for="result") result
28 textarea(id="result", disabled="true")
29 button(id="compile-and-test") compile and test
30 script(src="/javascripts/ace-builds/src-noconflict/ace.js", type="text/javascript")
31 script(src="/javascripts/editor.js")
32