-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfooter.html
92 lines (91 loc) · 3.89 KB
/
footer.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
<div class="row">
<div class="col-md-12">
<div class="footer">
<div class="footer-ohloh">{% include ohloh.html %}</div>
<div class="footer-group">
<div class="footer-item">
<p>© 2009-{{ "now" | date: "%Y" }} Open Rails</p>
<a href="http://www.gnu.org/licenses/licenses.html" target="_blank">
<img src="/assets/logos/gplv3_logo.png" alt="GPLv3 logo" style="padding-bottom: 0.5em" />
</a>
<p>You use Open Rails entirely at your own risk. It is intended for entertainment purposes only and is not suitable for professional applications.</p>
</div>
<div class="footer-item">
<ul>
<li>
<a href="http://www.getbootstrap.com/" target="_blank" title="The most popular front-end framework for developing responsive, mobile-first projects on the web.">
<img src="/assets/logos/bootstrap.png" alt="Bootstrap logo" /> Built with Bootstrap </a
><br />
</li>
<li>
<a href="http://validator.w3.org/" target="_blank" title="W3C Markup Validation Service">
<img src="/assets/logos/valid-html.png" alt="Valid HTML logo" /> Validated with W3C
</a>
</li>
<li>
<a href="http://website-link-checker.online-domain-tools.com/" target="_blank" title="Link checking service"> Links checked with Online Domain Tools </a>
</li>
<li>
<a href="http://www.internetmarketingninjas.com/online-spell-checker.php" target="_blank" title="Spell checker"> Spelling checked with Internet Marketing Ninjas </a>
</li>
<li>
<a href="http://tools.pingdom.com/fpt/" target="_blank" title="Webpage performance tools"> Speed checked with Pingdom Tools </a>
</li>
<li>
<a href="http://cssminifier.com/" target="_blank" title="CSS Minifier"> CSS minified with CSS Minifier </a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- Must come before Bootstrap.min.js -->
<!-- http: protocol omitted so server can choose http or https -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>
// Work-around to use local file if CDN is blocked - see http://stackoverflow.com/questions/5257923/how-to-load-local-script-files-as-fallback-in-cases-where-cdn-are-blocked-unavai
if (typeof jQuery == 'undefined') {
document.write('<script src="/assets/jquery/1.11.0/jquery.min.js">\x3C/script>');
}
</script>
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js"></script>
<script>
// Work-around to use local file if CDN is blocked.
if (typeof $.fn.popover == 'undefined') {
// popover is Bootstrap-specific
document.write('<script src="/assets/bootstrap/3.1.0/js/bootstrap.min.js">\x3C/script>');
// Assume CSS was unavailable too.
$('<link href="/assets/bootstrap/3.1.0/css/bootstrap.min.css" rel="stylesheet" type="text/css">').appendTo('head');
// Reload template.css and index.css to keep files in the right sequence.
$('<link rel="stylesheet" href="/assets/template.css" rel="stylesheet" type="text/css">').appendTo('head');
$('<link rel="stylesheet" href="index.css" rel="stylesheet" type="text/css">').appendTo('head');
}
</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-53007731-1', 'auto');
ga('send', 'pageview');
ga('set', 'transport', 'beacon');
</script>
<script>
$(function () {
$('a[href]').on('click', function () {
if (this.href.indexOf('://openrails.org/') === -1 && this.href.indexOf('://www.openrails.org/') === -1) {
ga('send', 'event', 'outbound', 'click', this.href);
}
});
});
</script>