forked from mustache/mustache.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (91 loc) · 4.12 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
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
---
# Yeah, this should be .mustache
# But this way we can gh-pages.
---
<!DOCTYPE html>
<!--
_ _
_____*~~~ ** ~~~*_____
__* ___ |\__/| ___ *__
_* / 888~~\__(8OO8)__/~~888 \ *_
_* /88888888888888888888888888\ *_
* |8888888888888888888888888888| *
/~* \8888/~\88/~\8888/~\88/~\8888/ *~
/ ~* \88/ \/ (88) \/ \88/ *~
/ ~* \/ \/ \/ *~
/ ~~*_ _*~~/
/ ~~~~~*___ ** ___*~~~~~ /
/ ~ ~ /
/ /
/ /
/ /
/ t__n__r__ /
/ | ####### |
/ ___ | ####### | ____i__ /
/ _____p_____l_l____ | ####### | | ooooo | qp
i__p__ / | ############## | | ####### |__l___xp____| ooooo | |~~~~|
oooo |_I_| ############## | | ####### |oo%Xoox%ooxo| ooooo |p__h__|##%#|
oooo |ooo| ############## | | ####### |o%xo%%xoooo%| ooooo | |#xx%|
oooo |ooo| ############## | | ####### |o%ooxx%ooo%%| ooooo |######|x##%|
oooo |ooo| ############## | | ####### |oo%%x%oo%xoo| ooooo |######|##%x|
oooo |ooo| ############## | | ####### |%x%%oo%/oo%o| ooooo |######|/#%x|
oooo |ooo| ############## | | ####### |%%x/oo/xx%xo| ooooo |######|#%x/|
oooo |ooo| ############## | | ####### |xxooo%%/xo%o| ooooo |######|#^x#|
oooo |ooo| ############## | | ####### |oox%%o/x%%ox| ooooo |~~~$~~|x##/|
oooo |ooo| ############## | | ####### |x%oo%x/o%//x| ooooo |_KKKK_|#x/%|
ooo~\|ooo|~\############## | ~\####### |oox%xo%%oox%~\ooooo |_|~|~\|xx%/|
ooo ||oHo| |####AAAA###### |h||##XX### |x%x%WWx%%/ox||ooDoo |_| |Y||xGGx|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ~~~~~~~
-->
<html>
<head>
<title>{{ site.name }}</title>
<link href="burt.css" media="screen" rel="stylesheet" type="text/css" />
<link href="extras/highlight.css" media="screen" rel="stylesheet" type="text/css" />
</head>
<body>
<span id="logo">}</span>
<div id="content">
<p>Logic-less templates.</p>
<p>
Available in
{% for language in site.data.languages %}
{% if forloop.last %}and for{% endif %}
<a href="{{ language.url }}">{{ language.name }}</a>{% unless forloop.last %},{% endunless %}
{% endfor %}
</p>
<p>
Works great with
{% for editor in site.data.editors %}
{% if forloop.last %}and{% endif %}
<a href="{{ editor.url }}">{{ editor.name }}</a>{% unless forloop.last %},{% endunless %}
{% endfor %}
</p>
<p>
The Manual:
<a href="mustache.5.html">mustache(5)</a>
and
<a href="mustache.1.html">mustache(1)</a>
</p>
<p>
<a id="demo" href="#demo">Demo</a>
</p>
<div id="demo-box" style="display:none;">
<label>Mustache</label>
<textarea class="template">{% include demo.mustache %}</textarea>
<label>JSON <small>(try setting empty to true)</small></label>
<textarea class="json">{% include demo.json %}</textarea>
<p><input type="button" class="run" value="Render Template"/></p>
<label>HTML</label>
<pre class="html sh_html"></pre>
</div>
<p>IRC: <a href="irc://irc.freenode.net:6667/#{">#{</a> on Freenode</p>
<p>Mailing list: <a href="mailto:[email protected]">[email protected]</a></p>
<p>GitHub pages: <a href="https://github.com/mustache/mustache.github.com">https://github.com/mustache/mustache.github.com</a></p>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script src="extras/mustache.js"></script>
<script src="extras/highlight.js"></script>
<script src="tom.js"></script>
</body>
</html>