forked from gist-run/gist-run
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (49 loc) · 2.38 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
<!DOCTYPE html>
<html>
<head>
<title>GistRun</title>
<meta name="description" content="Bring your Gists to life with GistRun! Create or update GitHub Gists, share on StackOverflow and more.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:site_name" content="GistRun">
<meta property="og:title" content="Bring your Gists to life with GistRun">
<meta property="og:description" content="GistRun is a site for running, creating and updating GitHub Gists. With GistRun you can easily share Gists on StackOverflow.">
<meta property="og:type" content="website" />
<meta property="og:url" content="https://gist.run" />
<meta property="og:image" content="https://gist.run/img/logo-big.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="533" />
<meta property="og:image:height" content="533" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@GistRun_" />
<meta name="twitter:creator" content="@dany0w" />
<link rel="canonical" href="https://gist.run">
<script>
if (location.host === 'gist.run' && location.protocol !== 'https:') {
location.protocol = 'https';
} else if (location.host === 'gist-run.github.io') {
location.href = 'https://gist.run';
}
</script>
<link rel="icon" href="img/favicon32x32.ico">
<link rel="stylesheet" href="jspm_packages/github/github/octicons@3.5.0/octicons.css">
<link rel="stylesheet" href="jspm_packages/github/primer/primer@2.7.1/css/primer.css">
<link rel="stylesheet" href="styles/base-styles.css">
<link rel="stylesheet" href="styles/app-styles.css">
</head>
<body aurelia-app="main">
<img class="splash" src="img/splash.png">
<script src="jspm_packages/system.js"></script>
<script src="config.js"></script>
<script>
System.import('aurelia-bootstrapper');
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-59973368-9', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>