single.html 1006 B

123456789101112131415161718192021222324252627282930
  1. {{ define "main" }}
  2. <div class="container-fluid blog_article p-0">
  3. <section class="bhouseweb_loc_banner">
  4. </section>
  5. <div class="content">
  6. <h3>{{ .Title }}</h3>
  7. <div class="d-flex justify-content-between align-items-center">
  8. <span>{{ .PublishDate.Format "2006-01-02" }}</span>
  9. <div class="icon-box">
  10. <a href="" id="collection_icon_fb" target="_blank"><img src="/img/icon_fb@2x.png" alt=""></a>
  11. <a href="" id="collection_icon_line" target="_blank"><img src="/img/icon_line@2x.png" alt=""></a>
  12. </div>
  13. </div>
  14. <span class="line"></span>
  15. <div class="news-content">
  16. {{ .Content }}
  17. </div>
  18. <hr class="bhouseweb_loc_line">
  19. </div>
  20. </section>
  21. <a href="/news">
  22. <p class="article__readMore text-center fw-bold"> <span style="font-size: 18px;"
  23. class="fw-normal me-2">&lt;</span>回到最新消息公告</p>
  24. </a>
  25. </div>
  26. </div>
  27. {{ end }}