-
Notifications
You must be signed in to change notification settings - Fork 41
/
500.html
94 lines (86 loc) · 4.14 KB
/
500.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>500 - Internal server error</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="/public/css/bootstrap.min.css" rel="stylesheet" type="text/css" media="all"/>
<link href="/public/css/custom.css" rel="stylesheet" type="text/css" media="all"/>
<link href='//fonts.googleapis.com/css?family=Roboto:300' rel='stylesheet' type='text/css'>
<style>
body {
padding-top: 50px;
}
.starter-template {
padding: 40px 15px;
}
</style>
<!-- TODO: Complete this project :) -->
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<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="about.html"><img src="/public/img/nm-logo.png"></a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li class="active"><a href="about.html">About National Map</a></li>
<li ><a href="help/howto.html">Help & FAQ</a></li>
<li ><a href="privacy.html">Privacy</a></li>
<li><a href="http://nationalmap.gov.au">Launch the National Map</a></li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<div class="container">
<div class="starter-template">
<div class="row">
<div class="col-md-2">
<img height="105" class="logo center-block" src="/public/img/pmc-stacked.jpg" style="opacity:0.6" alt="Logo of Department of the Prime Minister and Cabinet"><!-- match desaturated GA logo. -->
<img height="80" class="logo center-block" src="/public/img/GA-dark.png" alt="Logo of Geoscience Australia">
<img height="80" class="logo center-block" src="/public/img/data61-white.jpg" alt="Logo of Data61/CSIRO">
<img height="140" class="logo center-block" src="/public/img/iawards.png" alt="Logo of iAwards">
<img width="160" class="logo center-block" src="/public/img/Finalist-Innovation.gif" alt="Finalist in Innovation at CeBIT AU Business Awards 2015">
</div>
<div class="col-md-9">
<h2>Internal server error</h2>
<p>Something went wrong on our server. Please send an email to <a href="mailto:data@pmc.gov.au">data@pmc.gov.au</a>, explaining what you were doing at the time it happened. This will help us track down the cause.</p>
<p><b>← Return to <a href="/">NationalMap</a></b>.
<div style="font-size: 300px; color: hsl(0, 100%, 85%); text-align:center">500</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="col-lg-12">
<p>© Department of the Prime Minister and Cabinet, Department of Communications, and National ICT Australia Limited (NICTA) 2014-2015. All Rights Reserved.</p>
<p>
<strong><a href="#terms">Terms and conditions</a></strong> –
<strong><a href="privacy.html">Privacy</a></strong>
</p>
</div>
</div>
</footer>
<script src="//code.jquery.com/jquery.min.js"></script>
<script>
$(document).ready(function () {
if (location.hash) {
location.hash && $(location.hash + '.collapse').collapse('show');
}
});
</script>
<script src="/public/js/bootstrap.min.js"></script>
</body>
</html>