Archived
9
1
This repository has been archived on 2019-06-17. You can view files and clone it, but cannot push or open issues or pull requests.
blog_old/template/pure/post.html
2016-01-01 23:05:36 +08:00

18 lines
648 B
HTML

{{template "meta.html" .}}
<div class="pure-g-r" id="layout">
{{template "sidebar.html" .}}
<div class="pure-u-1">
<div class="content">
<div class="post">
<h1 class="post-header">{{.Post.Title}}</h1>
<div class="post-meta">
<small>{{.Post.Created.Year}}-{{.Post.Created.Month}}-{{.Post.Created.Day}}</small>
</div>
<div class="post-description">{{.Post.ContentHTML}}</div>
</div>
{{template "comment.html" .}}
</div>
{{template "footer.html" .}}
</div>
</div>
{{template "footer_js.html" .}}