-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
133 lines (128 loc) · 5.75 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en" ng-app="ASPIO">
<head>
<meta charset="utf-8">
<meta name="description" content="{{description}}">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width, user-scalable=no">
<meta name="fragment" content="!">
<title ng-bind="title"></title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.4.1/css/bootstrap.min.css">
<!-- Start Single Page Apps for GitHub Pages -->
<script type="text/javascript">
// Single Page Apps for GitHub Pages
// https://github.com/rafrex/spa-github-pages
// Copyright (c) 2016 Rafael Pedicini, licensed under the MIT License
// ----------------------------------------------------------------------
// This script checks to see if a redirect is present in the query string
// and converts it back into the correct url and adds it to the
// browser's history using window.history.replaceState(...),
// which won't cause the browser to attempt to load the new url.
// When the single page app is loaded further down in this file,
// the correct url will be waiting in the browser's history for
// the single page app to route accordingly.
(function(l) {
if (l.search) {
var q = {};
l.search.slice(1).split('&').forEach(function(v) {
var a = v.split('=');
q[a[0]] = a.slice(1).join('=').replace(/~and~/g, '&');
});
if (q.p !== undefined) {
window.history.replaceState(null, null,
l.pathname.slice(0, -1) + (q.p || '') +
(q.q ? ('?' + q.q) : '') +
l.hash
);
}
}
}(window.location))
</script>
<!-- End Single Page Apps for GitHub Pages -->
<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-63546187-1', 'auto');
ga('send', 'pageview');
</script> <!--Google Analytics-->
</head>
<body class="container">
<a href="https://github.com/IvanJosipovic/AutoSPInstallerOnlineGithubPage"><img style="position: absolute; top: 0; left: 0; border: 0;" src="/Content/forkme_left_orange_ff7600.png" alt="Fork me on GitHub"></a>
<nav class="navbar navbar-inverse" role="navigation">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" ng-init="navCollapsed = true" ng-click="navCollapsed = !navCollapsed">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">AutoSPInstaller Online</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" ng-class="!navCollapsed && 'in'">
<ul class="nav navbar-nav">
<li><a href="/">Home</a></li>
<li><a href="/News">News</a></li>
<li><a href="/FarmConfiguration">Build a Farm</a></li>
<li><a href="/Guide">Guide</a></li>
<li><a href="/FAQ">FAQ</a></li>
<li><a href="/Download">Download</a></li>
<li><a href="/Privacy">ToS & Privacy</a></li>
<li><a href="/Contact">Contact</a></li>
</ul>
</div>
</nav> <!--Navigation-->
<div class="row">
<div class="col-md-12">
<div ng-view></div>
</div> <!--Content-->
</div>
<footer>
<div class="row col-md-12">
<br/>
<br/>
<br/>
<br/>
<br/>
<p>
© 2015 - AutoSPInstaller Online
<br/><a href="/Privacy">Terms of Service & Privacy Policy</a>
</p>
</div>
</footer>
<div id="disqus_thread"></div>
<script src="app.js"></script>
<script type="text/ng-template" id="error-messages">
<div ng-message="required">This field is required.</div>
<div ng-message="min">This number is too small.</div>
<div ng-message="max">This number too large.</div>
<div ng-message="number">A number is required.</div>
<div ng-message="url">A url is required. IE https://test.doamin.com</div>
<div ng-message="date">A date is required.</div>
<div ng-message="email">This email is not valid.</div>
<div ng-message="integer">A integer is required.</div>
</script>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES * * */
var disqus_shortname = 'autospinstalleronline';
var disqus_url = 'https://autospinstaller.com';
var disqus_identifier = 'Main';
/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement('script');
dsq.type = 'text/javascript';
dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<!--DISQUS-->
</body>
</html>