-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
24 lines (19 loc) · 838 Bytes
/
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
<!-- Load Client-Side Compiler Dependencies -->
<script src="//code.jquery.com/jquery-latest.min.js"></script>
<script src="//rawgithub.com/visionmedia/jade/master/jade.js"></script>
<script src="//learnboost.github.io/stylus/try/stylus.min.js"></script>
<script src="//coffeescript.org/extras/coffee-script.js"></script>
<!-- Process the Template and Stylesheet -->
<script type="text/coffeescript">
jQuery.ajaxSetup async: false
$.get "tournament/index.jade", (template) ->
template = jade.compile(template, pretty: true)
contents = document.open("text/html", "replace")
contents.write template()
contents.close()
$.get "tournament/index.styl", (styl) ->
stylus.render styl, (err, css) ->
styl = document.createElement("style")
styl.innerHTML = css # Compiled Stylus
document.body.appendChild(styl)
</script>