1234567891011121314151617181920212223242526272829303132333435 |
- {{ define "main" }}
- <section class="page-title7 bg-2">
- <div class="container">
- <div class="row">
- <div class="col-md-12 text-center">
- <h1>消息與報導</h1>
- </div>
- </div>
- </div>
- </section>
- <section class="section41">
- <div class="container">
- <table>
- {{ $paginator := .Paginate .Data.Pages }}
- {{ range $paginator.Pages }}
- <tr>
- <td width="5%" style="padding-left:10px;">
- <a href="{{ .RelPermalink }}">
- <span><b>{{ .PublishDate.Format "2006/01/02" }}</b></span>
- </a>
- </td>
- <td>
- <a href="{{ .RelPermalink }}">
- <span><b>{{ .Title }}</b></span>
- </a>
- </td>
- </tr>
- {{ end }}
- </table>
- </div>
- </section>
- {{ end }}
|