wp-go/templates/posts/index.gohtml
2022-09-19 00:07:23 +08:00

71 lines
2.7 KiB
Plaintext

{{template "layout/base" .}}
{{define "content" }}
{{if .posts}}
<div id="primary" class="content-area">
<main id="main" class="site-main">
{{if .header}}
<header class="page-header">
<h1 class="page-title">
{{if .search}}
{{.header}}
{{else}}
{{.header |unescaped}}
{{end}}
</h1>
</header>
{{end}}
{{ range $k,$v:=.posts}}
<article id="post-{{$v.Id}}"
class="post-{{$v.Id}} post type-post status-publish format-standard hentry category">
<header class="entry-header">
<h2 class="entry-title">
<a href="/p/{{$v.Id}}" rel="bookmark">{{$v.PostTitle}}</a>
</h2>
</header><!-- .entry-header -->
<div class="entry-content">
{{$v.PostContent|unescaped}}
</div><!-- .entry-content -->
<footer class="entry-footer">
<span class="posted-on">
<span class="screen-reader-text">发布于 </span>
<a href="/p/{{$v.Id}}" rel="bookmark">
<time class="entry-date published updated" datetime="{{$v.PostDateGmt}}">{{$v.PostDate|dateCh}}
</time>
</a>
</span>
{{if $v.CategoriesHtml}}
<span class="cat-links">
<span class="screen-reader-text">分类 </span>
{{$v.CategoriesHtml|unescaped}}
</span>
{{end}}
{{if $v.TagsHtml}}
<span class="tags-links">
<span class="screen-reader-text">标签 </span>
{{$v.TagsHtml|unescaped}}
</span>
{{end}}
<span class="comments-link">
<a href="/p/1#comments">
<span class="screen-reader-text">{{$v.PostTitle}}</span>有1条评论
</a>
</span>
</footer><!-- .entry-footer -->
</article><!-- #post-{{$v.Id}} -->
{{end}}
{{template "layout/page" .}}
</main><!-- .site-main -->
</div>
{{else }}
{{template "layout/empty" .}}
{{end}}
{{end}}