404.html 1.1 KB

1234567891011121314151617181920
  1. {{ define "title"}}
  2. 404 - Page Not Found | {{ .Site.Params.author.name }}
  3. {{ end }}
  4. {{ define "main"}}
  5. <div class="error-container" style="text-align: center; padding: 40px;">
  6. <h1 style="font-size: 72px; margin-bottom: 20px;">4😮4</h1>
  7. <p style="font-size: 24px; margin-bottom: 20px;">Oops! Looks like this page took a wrong turn at the internet.</p>
  8. <p style="font-size: 18px; margin-bottom: 30px;">Maybe it's exploring the digital wilderness, or perhaps it's having coffee with the 403 page.</p>
  9. <div style="font-family: monospace; background: rgba(0,0,0,0.1); padding: 20px; border-radius: 8px; display: inline-block;">
  10. <p style="margin: 0;">ERROR: Page_Not_Found</p>
  11. <p style="margin: 5px 0;">SOLUTION: Try turning it off and on again... or just go back home 😉</p>
  12. </div>
  13. <p style="margin-top: 30px;">
  14. <a href="/" style="display: inline-block; padding: 10px 20px; background: #333; color: #fff; text-decoration: none; border-radius: 5px; transition: background 0.3s;">
  15. Take Me Home 🏠
  16. </a>
  17. </p>
  18. </div>
  19. {{ end }}