single.html 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <!DOCTYPE html>
  2. <html lang="{{ .Site.LanguageCode }}">
  3. {{ partial "head.html" . }}
  4. <body>
  5. <!-- Google Tag Manager (noscript) -->
  6. <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MTWWP3G" height="0" width="0"
  7. style="display:none;visibility:hidden"></iframe></noscript>
  8. <!-- End Google Tag Manager (noscript) -->
  9. <div id="all">
  10. {{ partial "navbar.html" . }}
  11. <!-- {{ partial "nav.html" . }} -->
  12. {{ partial "breadcrumbs.html" . }}
  13. <div id="content">
  14. <div class="container-fluid">
  15. <div class="row">
  16. <div class="col-12 col-lg-8">
  17. <div id="blog-post">
  18. <section class="mt-3 mt-lg-0 info">
  19. <ul>
  20. {{ range (.GetTerms "tags") }}
  21. <li>
  22. <a href="{{ .Permalink }}">
  23. <i class="fas fa-tags"></i>
  24. {{ .LinkTitle }}
  25. </a>
  26. </li>
  27. {{ end }}
  28. </ul>
  29. <small class="text-muted">{{ .Date | time.Format ":date_long" }}</small>
  30. </section>
  31. <!-- {{ if or .Params.author .Params.date }}
  32. <small class="text-muted text-uppercase mb-small text-right">
  33. {{ if .Params.author }}{{ i18n "authorBy" }} <a href="#">{{ .Params.author }}</a>{{ end }}
  34. {{ if and .Params.author .Params.date }} | {{ end }}
  35. {{ if .Params.date }}{{ .Date.Format .Site.Params.date_format }}{{ end }}
  36. </small>
  37. {{ end }} -->
  38. <div id="post-content">
  39. {{ .Content }}
  40. </div>
  41. <a href="/blog/" class="back-link">< 回到列表</a>
  42. </div>
  43. </div>
  44. <div class="col-12 col-lg-4 pe-lg-5">
  45. <div id="form">
  46. {{ partial "form-main.html" . }}
  47. </div>
  48. </div>
  49. <!-- <div class="col-md-3">
  50. {{ partial "sidebar.html" . }}
  51. </div> -->
  52. </div>
  53. </div>
  54. </div>
  55. {{ partial "LP_components/Footer.html" . }}
  56. </div>
  57. {{ partial "scripts.html" . }}
  58. </body>
  59. </html>