single.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 href="#bookmark"></use>
  6. </svg>
  7. {{ .Title }}
  8. </h1>
  9. <div class="date">
  10. {{ $dateFormat := $.Site.Params.dateFormat | default "Jan 2, 2006" }}
  11. {{ $publishDate := .PublishDate }}
  12. <strong>{{ T "publish_date" }} </strong>{{ $publishDate.Format $dateFormat }}
  13. {{ with .Lastmod }}
  14. {{ if gt . $publishDate }}
  15. <br>
  16. <strong>{{ T "last_updated" }} </strong>{{ .Format $dateFormat }}
  17. {{ end }}
  18. {{ end }}
  19. </div>
  20. {{ with .Params.tags }}
  21. <div class="tags">
  22. <strong>{{ T "tags" }} </strong>
  23. <ul aria-label="{{ T "aria_label_tags" }}">
  24. {{ range . }}
  25. <li>
  26. <svg class="tag-icon" aria-hidden="true" viewBox="0 0 177.16535 177.16535" focusable="false">
  27. <use href="#tag"></use>
  28. </svg>
  29. {{ $href := print ("tags/" | relLangURL) (. | urlize) "/" }}
  30. <a href="{{ $href }}">{{ . }}</a>
  31. </li>
  32. {{ end }}
  33. </ul>
  34. </div>
  35. {{ end }}
  36. {{ partial "toc.html" . }}
  37. {{ .Content }}
  38. </main>
  39. {{ partial "disqus.html" . }}
  40. {{ end }}