Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
74 rader
3.0 KiB
74 rader
3.0 KiB
{{template "header"}}
|
|
<title>博客 - 个人随笔</title>
|
|
<link type="text/css" rel="styleSheet" href="/static/css/me.css"/>
|
|
</head>
|
|
<body>
|
|
<div class="root-container">
|
|
{{template "nav" .}}
|
|
<div class="me-menu">
|
|
<div style="height: 50px;line-height: 50px">
|
|
<a href=""><img src="/static/img/2.png" alt="头像" class="img-circle"></a>
|
|
<a href="" style="margin-left: 15px;font-size: 18px;text-decoration: none">{{.User.NickName}}</a>
|
|
</div>
|
|
<hr style="height:1px;border:none;border-top:1px solid #EEE;margin: 6px;"/>
|
|
<div style="display: flex;height: 30px;line-height: 30px;">
|
|
<div style="display: inline-block;width: 100px">
|
|
<span>文章: </span>
|
|
<span>{{.User.BlogCount}}</span>
|
|
</div>
|
|
<div style="display: inline-block;flex: 1">
|
|
<span>访问: </span>
|
|
<span>{{.User.BlogBrowes}}</span>
|
|
</div>
|
|
</div>
|
|
<div style="display: flex;height: 30px;line-height: 30px;">
|
|
<div style="display: inline-block;width: 100px">
|
|
<span>评论: </span>
|
|
<span>{{.User.BlogComment}}</span>
|
|
</div>
|
|
<div style="display: inline-block;flex: 1">
|
|
<span>喜欢: </span>
|
|
<span>{{.User.BlogLike}}</span>
|
|
</div>
|
|
</div>
|
|
<hr style="height:1px;border:none;border-top:1px solid #EEE;margin: 6px;"/>
|
|
</div>
|
|
<div class="me-blog-root">
|
|
<div class="me-blog-list">
|
|
{{range .Page.List}}
|
|
<p><a href="/blog/{{.Id}}">{{.Title}}</a></p>
|
|
<div>
|
|
<em>发布时间:{{.Ctime.Format "2006/01/02"}}</em>
|
|
<em>浏览量:{{.Browses}}</em>
|
|
<span style="width: 35px;margin-left: 30px"><a href="">删除</a></span>
|
|
</div>
|
|
<hr style="height:1px;border:none;border-top:1px solid #EEE;margin: 6px;"/>
|
|
{{end}}
|
|
<div style="text-align: center">
|
|
<nav>
|
|
<div class="pagination pagination-lg">
|
|
<ul>
|
|
{{if .Page.FirstPage}}
|
|
{{else}}
|
|
<li class="prev">
|
|
<a href="/me/blog?num={{ .Page.PageNo | NAdd -1}}&flag={{.Flag}}">«</a>
|
|
</li>
|
|
{{end}}
|
|
<li class="active"><a href="javascript:void(0)">{{.Page.PageNo}}</a></li>
|
|
{{if .Page.LastPage}}
|
|
{{else}}
|
|
<li class="next">
|
|
<a href="/me/blog?num={{ .Page.PageNo | NAdd +1}}&flag={{.Flag}}">»</a>
|
|
</li>
|
|
{{end}}
|
|
</ul>
|
|
</div>
|
|
</nav>
|
|
</div>
|
|
</div>
|
|
{{template "footer"}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|