-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathindex.html
32 lines (27 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>VueJS Shortener URL</title>
<meta name="description" content="Shorten urls with VueJS, Bitly API and ChuckCSS" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta name="author" content="Mickaël SURREL, ALPIXEL agency">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css" media="screen" />
<link rel="stylesheet" href="dist/css/front.min.css" type="text/css" media="screen" />
<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','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-9271946-13', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div id="app" v-cloak></div>
<script src="dist/js/app.min.js"></script>
<script src="dist/js/vueapp.min.js"></script>
<script async defer src="https://buttons.github.io/buttons.js"></script>
</body>
</html>