404.html (444B)
1 {{ define "main" }} 2 3 <style type="text/css" media="screen"> 4 .container { 5 margin: 10px auto; 6 max-width: 600px; 7 text-align: center; 8 } 9 h1 { 10 margin: 30px 0; 11 font-size: 4em; 12 line-height: 1; 13 letter-spacing: -1px; 14 } 15 </style> 16 17 <div class="container"> 18 <h1>404</h1> 19 20 <p><strong>Page not found (._. )</strong></p> 21 <p>Well, you've arrived at a page that doesn't exist.</p> 22 <p>Sorry about that.</p> 23 </div> 24 25 {{ end }}