single.html 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {{ define "main" }}
  2. <main id="main">
  3. <h1>
  4. <svg class="bookmark-icon" aria-hidden="true" viewBox="0 0 40 50" focusable="false">
  5. <use xlink:href="#bookmark"></use>
  6. </svg>
  7. {{ .Title }}
  8. </h1>
  9. <div class="date">
  10. {{ $dateFormat := $.Site.Params.dateFormat | default "Jan 2, 2006" }}
  11. <strong aria-hidden="true">Publish date: </strong>{{ .PublishDate.Format $dateFormat }}
  12. </div>
  13. {{ with .Params.tags }}
  14. <div class="tags">
  15. <strong aria-hidden="true">Tags: </strong>
  16. <ul aria-label="tags">
  17. {{ range . }}
  18. <li>
  19. <svg class="tag-icon" aria-hidden="true" viewBox="0 0 177.16535 177.16535" focusable="false">
  20. <use xlink:href="#tag"></use>
  21. </svg>
  22. {{ $href := print ("tags/" | absLangURL) (. | urlize) "/" }}
  23. <a href="{{ $href }}">{{ . }}</a>
  24. </li>
  25. {{ end }}
  26. </ul>
  27. </div>
  28. {{ end }}
  29. {{ if ne .Params.toc false }}
  30. {{ partial "toc" . }}
  31. {{ end }}
  32. {{ .Content }}
  33. </main>
  34. {{ end }}