list.html 886 B

1234567891011121314151617181920212223242526272829303132333435
  1. {{ define "main" }}
  2. <section class="page-title7 bg-2">
  3. <div class="container">
  4. <div class="row">
  5. <div class="col-md-12 text-center">
  6. <h1>消息與報導</h1>
  7. </div>
  8. </div>
  9. </div>
  10. </section>
  11. <section class="section41">
  12. <div class="container">
  13. <table>
  14. {{ $paginator := .Paginate .Data.Pages }}
  15. {{ range $paginator.Pages }}
  16. <tr>
  17. <td width="5%" style="padding-left:10px;">
  18. <a href="{{ .RelPermalink }}">
  19. <span><b>{{ .PublishDate.Format "2006/01/02" }}</b></span>
  20. </a>
  21. </td>
  22. <td>
  23. <a href="{{ .RelPermalink }}">
  24. <span><b>{{ .Title }}</b></span>
  25. </a>
  26. </td>
  27. </tr>
  28. {{ end }}
  29. </table>
  30. </div>
  31. </section>
  32. {{ end }}