Files
leanote/app/views/Blog/index.html
2014-05-07 13:06:24 +08:00

44 lines
1.1 KiB
HTML

{{template "Blog/header.html" .}}
<div id="postsContainer">
<div class="container">
{{if .notebookId}}
<h2>分类 {{.notebook.Title}}</h2>
{{end}}
</div>
<div id="posts">
{{range .blogs}}
<div class="each-post">
<div class="title">
<a href="/blog/view/{{.NoteId.Hex}}" title="全文">
{{.Title}}
</a>
</div>
<div class="created-time">
<i class="fa fa-bookmark-o" style="color: #666"></i>
{{if .Tags}}
{{blogTags .Tags}}
{{else}}
{{end}}
|
<i class="fa fa-calendar" style="color: #666"></i> 更新 {{.UpdatedTime | datetime}} |
<i class="fa fa-calendar" style="color: #666"></i> 创建 {{.CreatedTime | datetime}}
</div>
<div class="desc">
{{.Content | raw}}
</div>
<a class="more" href="/blog/view/{{.NoteId.Hex}}" title="更多">More...</a>
</div>
{{end}}
<!-- 分页 -->
<ul class="pager">
{{page .userInfo.Username .notebookId .page .pageSize .count}}
</ul>
</div>
</div>
{{template "Blog/footer.html" .}}
{{template "Blog/highlight.html"}}
</body>
</html>