single.html 915 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {{ define "title"}}
  2. Projects | {{ .Site.Params.author.name }}
  3. {{ end }}
  4. {{ define "main" }}
  5. <article>
  6. <header>
  7. <h1>
  8. {{ .Title }}
  9. </h1>
  10. </header>
  11. <style>
  12. .project-container {
  13. margin-bottom: 4rem;
  14. }
  15. .project-layout {
  16. display: flex;
  17. gap: 2rem;
  18. align-items: flex-start;
  19. }
  20. .project-image {
  21. flex: 0 0 150px;
  22. }
  23. .project-image img {
  24. width: 100%;
  25. height: auto;
  26. }
  27. .project-content {
  28. flex: 1;
  29. text-align: left;
  30. }
  31. .project-content h1,
  32. .project-content h2,
  33. .project-content h3 {
  34. margin-top: 0;
  35. }
  36. @media (max-width: 768px) {
  37. .project-layout {
  38. flex-direction: column;
  39. }
  40. .project-content {
  41. width: 100%;
  42. }
  43. }
  44. </style>
  45. {{ .Content }}
  46. </article>
  47. {{ end }}