404.html 685 B

1234567891011121314151617181920212223
  1. {{ define "main" }}
  2. {{ partial "header.html" . }}
  3. <div class="main-container">
  4. <section class="height-100 text-center">
  5. <div class="container pos-vertical-center">
  6. <div class="row">
  7. <div class="col-md-12">
  8. <h1 class="h1--large">404</h1>
  9. <p class="lead">
  10. The page you were looking for was not found.
  11. </p>
  12. <a href="{{ .Site.BaseURL }}">Go back to home page</a>
  13. </div>
  14. </div>
  15. <!--end of row-->
  16. </div>
  17. <!--end of container-->
  18. </section>
  19. </div>
  20. {{ partial "footer.html" . }}
  21. {{ end }}