planblog/layouts/_default/li.html

24 lines
573 B
HTML

<article>
<header>
<h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
<div class="post-meta clearfix">
<div class="post-date pull-left">
Posted on
<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" | safeHtml}}">
{{ .Date.Format "Jan 2, 2006" }}
</time>
</div>
</div>
</header>
<section>
{{ .Summary }}
</section>
{{ if .Truncated }}
<footer>
<ul class="pager">
<li class="next"><a href="{{ .Permalink }}">Read more &raquo;</a></li>
</ul>
</footer>
{{ end }}
</article>