list.html 840 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {{ define "title" }}
  2. {{ .Title }} | {{ .Site.Params.author.name }}
  3. {{ end }}
  4. {{ define "main" }}
  5. <div>
  6. <div class="listHeader">
  7. <div class="header-content">
  8. <div></div>
  9. <a href="/tags" class="tags-link"><span class="highlight">Tags</span></a>
  10. </div>
  11. </div>
  12. {{ with .Content }}
  13. <div class="listContent">
  14. {{- . -}}
  15. </div>
  16. {{ end }}
  17. </div>
  18. <style>
  19. .header-content {
  20. display: flex;
  21. justify-content: space-between;
  22. align-items: center;
  23. }
  24. .tags-link {
  25. text-decoration: none;
  26. font-size: 1.8rem;
  27. font-weight: bold;
  28. }
  29. .highlight {
  30. background: var(--accent-color);
  31. color: var(--bg-color);
  32. padding: 0.2em 0.4em;
  33. border-radius: 4px;
  34. transition: opacity 0.2s;
  35. }
  36. .tags-link:hover .highlight {
  37. opacity: 0.8;
  38. }
  39. </style>
  40. {{ end }}