34 lines
921 B
HTML
34 lines
921 B
HTML
---
|
|
title: Writing about the greenest things
|
|
description: The latest and greenest of things I've written about
|
|
contentClass: blog
|
|
layout: page
|
|
changefreq: weekly
|
|
---
|
|
|
|
{{-#for latestPost}}
|
|
<h2 class="post-title"><a href="{{url}}">{{title}}</a></h2>
|
|
<p class="latest-post-label">Latest Post!</p>
|
|
{{partial "post-meta"}}
|
|
{{partial "post-thumbnail"}}
|
|
{{-teaser}}
|
|
<p class="read-more no-border"><a href="{{url}}">Read more...</a></p>
|
|
{{-#end}}
|
|
|
|
{{#if tagCloud-}}
|
|
<h2 class="tags hard-section">Tag Cloud</h2>
|
|
<p class="tag-cloud" data-show-count>{{tagCloud}}</p>
|
|
{{#end-}}
|
|
|
|
<h2>Previous posts</h2>
|
|
|
|
{{#for previousPosts-}}
|
|
<h3 class="post-title"><a href="{{url}}">{{title}}</a></h3>
|
|
{{partial "post-meta"}}
|
|
{{partial "post-thumbnail"}}
|
|
{{-teaser}}
|
|
<p class="read-more"><a href="{{url}}">Read more...</a></p>
|
|
{{#end-}}
|
|
|
|
<p class="view-all-posts"><a href="{{getUrl 'archives.html'}}">View all posts</a></p>
|