-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (60 loc) · 3.62 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
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-118787381-4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-118787381-4');
</script>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Descriptions & Titles -->
<title>Pastebin - Matt Davis</title>
<meta property="og:site_name" content="pastebin.mattdavis.info"/>
<meta property="og:title" content="Pastebin - Matt Davis"/>
<meta property="og:url" content="https://pastebin.mattdavis.info"/>
<meta property="og:type" content="website"/>
<meta property="og:description" content="An alternative to pastebin.com. Paste your code and click to save. A unique URL is generated for each paste and can be shared with others."/>
<meta itemprop="name" content="Pastebin - Matt Davis"/>
<meta itemprop="url" content="https://pastebin.mattdavis.info"/>
<meta itemprop="description" content="An alternative to pastebin.com. Paste your code and click to save. A unique URL is generated for each paste and can be shared with others."/>
<meta name="description" content="An alternative to pastebin.com. Paste your code and click to save. A unique URL is generated for each paste and can be shared with others.">
<!-- Bootstrap -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js" integrity="sha384-cs/chFZiN24E4KMATLdqdvsezGxaGsi4hLGOzlXwp5UZB1LY//20VyM2taTB4QvJ" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js" integrity="sha384-uefMccjFJAIv6A+rW+L4AHf99KvxDjWSu1z9VI8SKNVmz4sk7buKt/6v9KI65qnm" crossorigin="anonymous"></script>
<!-- AngularJS -->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.6/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.6/angular-route.js"></script>
<script src="project/app.js"></script>
<!-- Font -->
<link href="https://fonts.googleapis.com/css?family=Poppins:100,200,400,600" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Open+Sans">
<!-- Google Icons -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons|Material+Icons+Sharp" rel="stylesheet">
<!-- Particles -->
<script src="landing/particles.min.js"></script>
<!-- HighlightJS -->
<script src="https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js?skin=sunburst"></script>
<!-- Style -->
<link rel="stylesheet" href="/landing/main.css" />
</head>
<body ng-app="project-app" data-theme="private">
<div ng-view>
</div>
<div class="collapse" id="alert-prompt">
<div class="alert text-center" role="alert" ng-model="alertPrompt" id="alert-prompt-data">
</div>
</div>
</body>
<!-- Controllers -->
<script src="project/components/landing/landingController.js"></script>
<script src="project/components/settings/settingsController.js"></script>
<script src="project/components/pastebin/share/pastebinController.js"></script>
<script src="project/components/pastebin/view/viewPasteController.js"></script>
<script src="project/components/broken-link/brokenLinkController.js"></script>
</html>