all repos — website @ master

personal website hosted at prithu.xyz, built using hugo

layouts/404.html

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
{{ partial "head.html" . }}

<body>
  {{ partial "nav.html" }}
  <section id="sec-404" class=page-section>
    <div class="container">
      <div class="shadow-box">
        <h1>Not Found<span class="joke">just like my purpose in life...</span></h1>
        <h2>404</h2>
      </div>
    </div>
  </section>
  {{ partial "footer.html" . }}
</body>

</html>