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/default/page.html
2016-01-01 23:05:36 +08:00

32 lines
1.3 KiB
HTML

{{template "meta.html" .}}
<body>
{{template "header.html" .}}
<section id="main">
<div class="container">
<div id="article-single">
<article class="article">
<div class="row">
<div class="col-md-10 col-md-offset-1 panel panel-default">
<header class="header">
<div class="meta">
<span class="date">
<span class="month">{{.Page.Created.Month}}</span>
<span class="day">{{.Page.Created.Day}}</span>
</span>
</div>
<h3 class="title">
<a href="{{url .Page.Url}}">{{.Page.Title}}</a>
</h3>
</header>
<aside class="aside clearfix">
<a class="stat label label-default pull-right"{{if .Page.Author.Url}} href="{{.Page.Author.Url}}" target="_blank"{{end}}>{{.Page.Author.Name}}</a>
</aside>
<section class="brief">{{.Page.ContentHTML}}</section>
</div>
</div>
</article>
</div>
{{template "comment.html" .}}
</div>
</section>
{{template "footer.html" .}}