list.html 957 B

123456789101112131415161718
  1. {{ define "main" }}
  2. <div class="panel space-y-2">
  3. <h1>Projects</h1>
  4. <p>What follows is a list of all the various projects I've worked on over the years, as well as a short blurb about them. Not all of them are complete, or even functioning. I think that's fine though. They're still something I worked on, and something I learned from. Most of them have more info about them once you click through.</p>
  5. <p>With all my projects, I encourage you to checkout the source code.</p>
  6. </div>
  7. {{ range .Pages.ByPublishDate.Reverse }}
  8. <div class="panel my-2">
  9. <h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
  10. <div class="flex flex-row flex-wrap md:flex-nowrap mt-2">
  11. <span class="image-wrapper w-full h-32 md:w-32 md:h-32">
  12. <img srcset="/imgs/no-image-new.webp" src="/imgs/no-image-new.png" alt="Filler" />
  13. </span>
  14. <p class="m-2 flex-1">{{ .Params.Intro | markdownify }}</p>
  15. </div>
  16. </div>
  17. {{ end }}
  18. {{ end }}