|
1 | | -<!doctype html> |
2 | 1 | <html lang="en"> |
3 | | - <head> |
4 | | - <meta charset="utf-8"> |
5 | | - <title>500 - Internal server error</title> |
6 | | - <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
7 | | - <link href="/public/css/bootstrap.min.css" rel="stylesheet" type="text/css" media="all"/> |
8 | | - <link href="/public/css/custom.css" rel="stylesheet" type="text/css" media="all"/> |
9 | | - <link href='//fonts.googleapis.com/css?family=Roboto:300' rel='stylesheet' type='text/css'> |
10 | | - <style> |
11 | | - body { |
12 | | - padding-top: 50px; |
13 | | - } |
14 | | - .starter-template { |
15 | | - padding: 40px 15px; |
16 | | - } |
17 | | - </style> |
18 | | - <!-- TODO: Complete this project :) --> |
19 | | - </head> |
20 | | - <body> |
21 | | - <nav class="navbar navbar-inverse navbar-fixed-top" role="navigation"> |
22 | | - <div class="container"> |
23 | | - <!-- Brand and toggle get grouped for better mobile display --> |
24 | | - <div class="navbar-header"> |
25 | | - <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> |
26 | | - <span class="sr-only">Toggle navigation</span> |
27 | | - <span class="icon-bar"></span> |
28 | | - <span class="icon-bar"></span> |
29 | | - <span class="icon-bar"></span> |
30 | | - </button> |
31 | | - <a class="navbar-brand" href="about.html"><img src="/public/img/nm-logo.png"></a> |
32 | | - </div> |
33 | | - <!-- Collect the nav links, forms, and other content for toggling --> |
34 | | - <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> |
35 | | - <ul class="nav navbar-nav"> |
36 | | - <li class="active"><a href="about.html">About National Map</a></li> |
37 | | - <li ><a href="help/howto.html">Help & FAQ</a></li> |
38 | | - <li ><a href="privacy.html">Privacy</a></li> |
39 | | - <li><a href="http://nationalmap.gov.au">Launch the National Map</a></li> |
40 | | - </ul> |
| 2 | + <head> |
| 3 | + <meta charset="utf-8" /> |
| 4 | + <title>TerriaJS</title> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
41 | 6 |
|
42 | | - </div> |
43 | | - <!-- /.navbar-collapse --> |
| 7 | + <link |
| 8 | + href="//fonts.googleapis.com/css?family=Roboto:300,600" |
| 9 | + rel="stylesheet" |
| 10 | + type="text/css" |
| 11 | + /> |
| 12 | + <style> |
| 13 | + * { |
| 14 | + box-sizing: border-box; |
| 15 | + } |
| 16 | + body { |
| 17 | + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, |
| 18 | + "Helvetica Neue", Arial, sans-serif; |
| 19 | + height: 100vh; |
| 20 | + display: flex; |
| 21 | + justify-content: center; |
| 22 | + align-items: center; |
| 23 | + gap: 1rem; |
| 24 | + color: #111827; |
| 25 | + } |
| 26 | + .error-number { |
| 27 | + font-family: inherit; |
| 28 | + font-size: 2.5rem; |
| 29 | + font-weight: 600; |
| 30 | + line-height: 1.2; |
| 31 | + margin: 0; |
| 32 | + padding-right: 1rem; |
| 33 | + border-right: 1px solid #dee2e6; |
| 34 | + } |
| 35 | + .error-description { |
| 36 | + font-family: inherit; |
| 37 | + font-size: 1.25rem; |
| 38 | + font-weight: 400; |
| 39 | + line-height: 1.2; |
| 40 | + margin: 0; |
| 41 | + } |
| 42 | + </style> |
| 43 | + </head> |
| 44 | + <body> |
| 45 | + <h1 class="error-number">500</h1> |
| 46 | + <div class="inline-block align-middle"> |
| 47 | + <h2 class="error-description" id="desc">Internal server error.</h2> |
44 | 48 | </div> |
45 | | - <!-- /.container --> |
46 | | -</nav> |
47 | | - <div class="container"> |
48 | | - |
49 | | - |
50 | | - <div class="starter-template"> |
51 | | - <div class="row"> |
52 | | - <div class="col-md-2"> |
53 | | - <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. --> |
54 | | - <img height="80" class="logo center-block" src="/public/img/GA-dark.png" alt="Logo of Geoscience Australia"> |
55 | | - <img height="80" class="logo center-block" src="/public/img/data61-white.jpg" alt="Logo of Data61/CSIRO"> |
56 | | - <img height="140" class="logo center-block" src="/public/img/iawards.png" alt="Logo of iAwards"> |
57 | | - <img width="160" class="logo center-block" src="/public/img/Finalist-Innovation.gif" alt="Finalist in Innovation at CeBIT AU Business Awards 2015"> |
58 | | - </div> |
59 | | - <div class="col-md-9"> |
60 | | - |
61 | | - <h2>Internal server error</h2> |
62 | | - <p>Something went wrong on our server. Please send an email to <a href=" mailto:[email protected]" >[email protected]</a>, explaining what you were doing at the time it happened. This will help us track down the cause. </p> |
63 | | - <p><b>← Return to <a href="/">NationalMap</a></b>. |
64 | | - <div style="font-size: 300px; color: hsl(0, 100%, 85%); text-align:center">500</div> |
65 | | - |
66 | | - |
67 | | - </div> |
68 | | - </div> |
69 | | - |
70 | | - </div> |
71 | | - </div> |
72 | | - <!-- Footer --> |
73 | | -<footer class="footer"> |
74 | | - <div class="container"> |
75 | | - <div class="col-lg-12"> |
76 | | - <p>© Department of the Prime Minister and Cabinet, Department of Communications, and National ICT Australia Limited (NICTA) 2014-2015. All Rights Reserved.</p> |
77 | | - <p> |
78 | | - <strong><a href="#terms">Terms and conditions</a></strong> – |
79 | | - <strong><a href="privacy.html">Privacy</a></strong> |
80 | | - </p> |
81 | | - </div> |
82 | | - </div> |
83 | | -</footer> |
84 | | - <script src="//code.jquery.com/jquery.min.js"></script> |
85 | | - <script> |
86 | | - $(document).ready(function () { |
87 | | - if (location.hash) { |
88 | | - location.hash && $(location.hash + '.collapse').collapse('show'); |
89 | | - } |
90 | | - }); |
91 | | - </script> |
92 | | - <script src="/public/js/bootstrap.min.js"></script> |
93 | | - </body> |
| 49 | + </body> |
94 | 50 | </html> |
0 commit comments