| 1 | <!DOCTYPE html> | 
| 2 | <html> | 
| 3 |     <head> | 
| 4 |         <meta http-equiv="content-type" content="text/html; charset=utf-8"> | 
| 5 |         <title>Error 404 - Not Found</title> | 
| 6 |         <meta name="title" content="Error 404 - Not Found" /> | 
| 7 |         <meta name="description" content="Resource not found" /> | 
| 8 |         <meta property="og:site_name" content="Josh Stockin" /> | 
| 9 |         <meta property="og:title" content="Error 404 - Not Found" /> | 
| 10 |         <meta property="og:description" content="Resource not found" /> | 
| 11 |         <meta property="og:type" content="website" /> | 
| 12 |         <meta property="og:image" content="/static/favicon.png" /> | 
| 13 |         <style> | 
| 14 |             @import url('https://fonts.googleapis.com/css?family=Fira+Sans:400,500&display=swap'); | 
| 15 |             html{ | 
| 16 |                 display: flex; | 
| 17 |                 align-items: center; | 
| 18 |                 justify-content: center; | 
| 19 |                 height: 100vh; | 
| 20 |                 font-family: 'Fira Sans', sans-serif; | 
| 21 |                 line-height: 1.4; | 
| 22 |                 color: #fff; | 
| 23 |             } | 
| 24 |             body { | 
| 25 |                 display: flex; | 
| 26 |                 align-items: center; | 
| 27 |                 justify-content: center; | 
| 28 |                 background-color: #e54120; | 
| 29 |                 color: #fff; | 
| 30 |                 padding: 0; | 
| 31 |                 margin: 0; | 
| 32 |                 box-sizing: border-box; | 
| 33 |             } | 
| 34 |             div { | 
| 35 |                 display: block; | 
| 36 |                 vertical-align: middle; | 
| 37 |                 max-width: 800px; | 
| 38 |                 padding: 40px; | 
| 39 |             } | 
| 40 |             a { | 
| 41 |                 color: #fff; | 
| 42 |             } | 
| 43 |         </style> | 
| 44 |         <meta name="viewport" content="width=device-width, initial-scale=1"> | 
| 45 |     </head> | 
| 46 |     <body> | 
| 47 |         <div> | 
| 48 |             <h1>404 Not Found</h1> | 
| 49 |             <p>The 404 (Not Found) status code indicates that the origin server did not find a current representation for the target resource or is not willing to disclose that one exists. A 404 status code does not indicate whether this lack of representation is temporary or permanent; the 410 (Gone) status code is preferred over 404 if the origin server knows, presumably through some configurable means, that the condition is likely to be permanent.</p> | 
| 50 |             <a href="/">Back to home</a> | 
| 51 |         </div> | 
| 52 |     </body> | 
| 53 | </html> | 
| 54 | 
 |