picanhajs
Version:
A tasty website static generator
36 lines (35 loc) • 906 B
HTML
<html lang="en">
<head>
<title>Blog Teste</title>
{{> includes}}
</head>
<body>
{{> header}}
<section class="posts">
<div class="wrapper">
<h2 class="last-posts-title">Last posts</h2>
{{#last}}
<div class="last-posts-post clearfix">
{{#banner}}
<img src="{{globals.baseurl}}{{.}}" alt="{{../title}}" />
{{/banner}}
<h3 class="last-posts-post-title"><a href="{{url}}">{{title}}</a></h3>
{{{excerpt}}}
<a href="{{url}}" class="last-posts-post-more">read more</a>
</div>
{{/last}}
{{#posts}}
<div class="last-posts-post clearfix">
{{#banner}}
<img src="{{globals.baseurl}}{{.}}" alt="{{../title}}" />
{{/banner}}
<h3 class="last-posts-post-title"><a href="{{url}}">{{title}}</a></h3>
{{{excerpt}}}
<a href="{{url}}" class="last-posts-post-more">read more</a>
</div>
{{/posts}}
</div>
</section>
</body>
</html>