-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (56 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>GistFiddle</title>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="keywords" content="GistFiddle, Run Gist Online, Gists Online, GitHub, Gist, Fiddle,"/>
<meta name="description" content="GistFiddle - Run Gists Online"/>
<link rel="shortcut icon" href="gist/img/icon.png" type="image/png">
<meta content="gist/img/pc.jpeg" property="og:image">
<link href="https://fonts.googleapis.com/css?family=Jua|Raleway" rel="stylesheet">
<link href="gist/css/home.css" rel="stylesheet">
<meta name="google-site-verification" content="L5PEcfeeEh2TjJzeRKSioHSJKBBiDPX-D4Ye_tC2Eog" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-55971607-5"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-55971607-5');
</script>
</head>
<body>
<div class="content">
<div class="logo">GistFiddle</div>
<div class="info">
Run Gists Online
</div>
<input id="gist" type="text" placeholder="Gist Id (hash from link)">
<input id="file" type="text" placeholder="File name (file.js)" name="fileName" autocomplete="on">
<button onclick="run()" class="runButton">Run</button>
</div>
<div class="box">
<div class="block lastGist">
<div class="block-heading">
Open your latest Gist
</div>
<button class="block-button" onclick="openLastGist()">Open</button>
</div>
<div class="block newGist">
<div class="block-heading">
Create new<br> Gist
</div>
<button class="block-button" onclick="createNewGist()">Create</button>
</div>
<div class="block aboutBlock">
<div class="block-heading">
About<br> GistFiddle
</div>
<button class="block-button" onclick="aboutGistFiddle()">Explore</button>
</div>
</div>
<br><br>
<script src="gist/js/homePage.js"></script>
</body>
</html>