Files
leanote/app/views/Blog/about_me.html

19 lines
347 B
HTML
Raw Normal View History

2014-10-28 14:40:37 +08:00
{{template "blog/header.html" .}}
2014-05-07 13:06:24 +08:00
<div id="postsContainer">
<div id="posts">
<div class="each-post">
<div class="title">
2014-05-10 16:01:50 +08:00
{{msg . "aboutMe"}}
2014-05-07 13:06:24 +08:00
</div>
<div class="created-time">
</div>
<div class="desc">
{{.userBlog.AboutMe | raw}}
2014-10-22 16:20:45 +08:00
2014-05-07 13:06:24 +08:00
</div>
</div>
</div>
</div>
2014-10-28 14:40:37 +08:00
{{template "blog/footer.html" .}}