-
Notifications
You must be signed in to change notification settings - Fork 37
/
index.html
74 lines (68 loc) · 2.56 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
<!doctype html>
<!--[if lt IE 7]><html class="ie6" lang="en"><![endif]-->
<!--[if IE 7]><html class="ie7" lang="en"><![endif]-->
<!--[if IE 8]><html class="ie8" lang="en"><![endif]-->
<!--[if gt IE 8]><!--><html lang="en"><!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>tmpltr</title>
<meta name="description" content="tmpltr is a jsFiddle clone for realtime JSON templating and CSS editing.">
<meta name="author" content="Tomm!">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body class="loading" id="body" role="split">
<div id="static">
<h1>tmpltr</h1>
<p>tmpltr is a jsFiddle clone for realtime JSON templating and CSS editing. It can save and export. Beep beep boop.</p>
</div>
<nav id="nav">
<strong>View:</strong>
<label for="inpViewSplit">
<input type="radio" name="inpView" class="inpView" id="inpViewSplit" checked="checked" value="split" />
Split
</label>
<label for="inpViewEdit">
<input type="radio" name="inpView" class="inpView" id="inpViewEdit" value="edit" />
Edit
</label>
<label for="inpViewResult">
<input type="radio" name="inpView" class="inpView" id="inpViewResult" value="result" />
Result
</label>
<a href="#" id="aReset">Reset</a>
<a href="#" id="aExport">Export</a>
</nav>
<div role="input">
<section class="sectInput" role="Data">
<pre name="preData" id="preData"></pre>
<label>Data</label>
</section>
<section class="sectInput" role="Structure">
<pre name="preStructure" id="preStructure"></pre>
<label>Structure</label>
</section>
<section class="sectInput" role="Style">
<pre name="preStyle" id="preStyle"></pre>
<label>Style</label>
</section>
</div>
<div role="output">
<iframe id="ifrOutput"></iframe>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
<script src="js/ace-0.2.0/src/ace.js"></script>
<script src="js/ace-0.2.0/src/theme-twilight.js"></script>
<script src="js/ace-0.2.0/src/mode-json.js"></script>
<script src="js/ace-0.2.0/src/mode-html.js"></script>
<script src="js/ace-0.2.0/src/mode-css.js"></script>
<script src="js/plugins.js"></script>
<script defer src="js/javascript.js"></script>
<script defer src="js/analytics.js"></script>
<!--[if lt IE 7 ]>
<script src="//ajax.googleapis.com/ajax/libs/chrome-frame/1.0.3/CFInstall.min.js"></script>
<script>window.attachEvent('onload',function(){CFInstall.check({mode:'overlay'})})</script>
<![endif]-->
</body>
</html>