single.html 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {{ define "main" }}
  2. <div class="container">
  3. <div class="row my-5 justify-content-center">
  4. <div class="col-12 col-lg-9">
  5. <header>
  6. {{ partial "post-title" . }}
  7. <!-- {{ partial "post-tags" . }} -->
  8. <!-- {{ partial "post-categories" . }} -->
  9. <hr>
  10. </header>
  11. <article class="blog-post content">
  12. <article class="content pt-2">
  13. {{ if eq .Params.image "cover.jpg" }}
  14. {{ else }}
  15. <img src="{{.Params.Image | absURL }}" alt="post-thumb" class="img-fluid rounded float-left mr-5 mb-4">
  16. {{ end }}
  17. {{.Content}}
  18. </article>
  19. <!-- {{ partial "translations.html" . }} -->
  20. <!-- {{ partial "related" . }} -->
  21. <hr>
  22. <a href="javascript:;" onclick="historyBack()" class="back-link mt-4">
  23. <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-left mb-1"
  24. viewBox="0 0 16 16">
  25. <path fill-rule="evenodd"
  26. d="M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z" />
  27. </svg>
  28. <span>回到上一頁</span>
  29. </a>
  30. </article>
  31. </div>
  32. <div class="col-12 col-lg-3 position-relative mt-2 mt-lg-0">
  33. {{ partial "sidebar.html" . }}
  34. <!-- {{ partial "news-featured.html" . }}
  35. {{ partial "taxonomies.html" . }} -->
  36. </div>
  37. </div>
  38. </div>
  39. {{ end }}