404.html 483 B

123456789101112131415161718192021
  1. {{ define "main" }}
  2. <div class="panel">
  3. <h1>Well, aren't you a busy bee?</h1>
  4. <p>
  5. Looks like you're a bit lost. Let's not wander too far from the hive, though.
  6. </p>
  7. <p>
  8. Why not check some of these posts to get back?
  9. </p>
  10. </div>
  11. <div class="panel">
  12. <div id="blog-flex">
  13. {{- range first 3 (shuffle (where .Site.RegularPages "Section" "blog")) }}
  14. {{ partial "micropanel.html" . }}
  15. {{- end }}
  16. </div>
  17. </div>
  18. {{ end }}