list.html 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {{ define "main" }}
  2. <section class="section">
  3. <div class="container">
  4. <div class="row">
  5. <div class="col-lg-12">
  6. <h2 class="text-center">{{.Title }}</h2>
  7. <div class="my-4 text-center">最棒的商品展示平台,讓專業的AI代言人,來幫您介紹產品</div>
  8. <div class="mb-5 embed-responsive embed-responsive-16by9">
  9. <iframe class="embed-responsive-item" src="https://www.youtube.com/embed/E4Dt7eU3WCo?autoplay=1" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
  10. </div>
  11. <!-- <img src="{{.Params.Image | absURL }}" alt="{{site.Params.author}}" class="img-fluid w-100 mb-4"> -->
  12. <!-- <h3 class="font-weight-light font-weight-bold">{{site.Params.author}}</h3> -->
  13. {{ .Content }}
  14. {{ if .Site.Params.line.enable }}
  15. <section class="section-sm">
  16. <div class="container">
  17. <div class="row">
  18. <div class="col-lg-8 mx-auto text-center">
  19. <h2>{{ .Site.Params.line.title | markdownify }}</h2>
  20. <p class="px-md-5 pt-3 border-left border-right border-primary">
  21. {{ .Site.Params.line.content | markdownify }}
  22. </p>
  23. <a href="https://line.me/R/ti/p/%40417lsxlz" target="_blank">
  24. <img class="my-4 img-fluid" src="{{site.Params.line.image | absURL}}" alt="加入Line官方帳號" style="max-height:50px;">
  25. </a>
  26. </div>
  27. </div>
  28. </div>
  29. </section>
  30. {{ end }}
  31. </div>
  32. </div>
  33. </div>
  34. </section>
  35. {{partial "instafeed.html" . }}
  36. {{ end }}