-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (65 loc) · 2.64 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
---
---
<!doctype html>
{% assign timestamp = site.time | date: "%Y%m%d%H%M%S" %}
<html>
<head>
<meta charset="UTF-8">
<title>js2coffee 2.0 — convert JavaScript to CoffeeScript</title>
<meta property='og:title' content='js2coffee - convert JavaScript to CoffeeScript'>
<meta name='twitter:title' content='js2coffee - convert JavaScript to CoffeeScript'>
<!-- url -->
<meta property='og:url' content='https://js2coffee.github.io/'>
<meta name='twitter:url' content='https://js2coffee.github.io/'>
<link rel='canonical' href='https://js2coffee.github.io/'>
<!-- desc -->
<meta name='description' content='A JS to CoffeeScript trans-compiler'>
<meta property='og:description' content='A JS to CoffeeScript trans-compiler'>
<meta name='twitter:description' content='A JS to CoffeeScript trans-compiler'>
<!-- image -->
<meta property="og:image" content="https://js2coffee.github.io/assets/preview.png">
<meta name="twitter:image" content="https://js2coffee.github.io/assets/preview.png">
<!-- ua -->
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<!-- viewport -->
<meta name='viewport' content='width=device-width'>
<!-- favicon -->
<link rel="icon" type="image/png" href="/assets/favicon-32.png">
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
{% include polyfills.html %}
<!-- css -->
<link rel='stylesheet' href='assets/vendor.css?t={{ timestamp }}'>
<link rel='stylesheet' href='assets/style.css?t={{ timestamp }}'>
<!-- js -->
<script src="{{ site.data.js.js2coffee.url | replace: '%s', site.data.js.js2coffee.version }}"></script>
<script src="{{ site.data.js.coffeescript.url | replace: '%s', site.data.js.coffeescript.version }}"></script>
<script src='assets/vendor.js?t={{ timestamp }}'></script>
<script src='assets/app.js?t={{ timestamp }}'></script>
</head>
<body>
{% include mobile-view.html %}
<div class='code-area'>
<div class='code-box left'>
<h3><strong>JavaScript</strong> <em>Type here</em></h3>
</div>
<div class='code-box right'>
<h3><strong>CoffeeScript</strong> <em>output</em></h3>
</div>
<div class='code-box-popup hide'>
<div class='container'>
<button class='close-button'></button>
<h3><strong>JavaScript Preview</strong> <em>via CoffeeScript</em></h3>
</div>
</div>
<div class='code-toolbar'>
<button class='button link' role='link'>Link</button>
<button class='button run' role='run'>Run</button>
</div>
<div class='announcement-box'>
{% include announcements.html %}
</div>
</div>
{% include sidebar.html %}
{% include analytics.html %}
</body>
</html>