Add cloud.html
parent
5d0c865ace
commit
05e84c46d5
@ -1,4 +1,5 @@
|
||||
---
|
||||
description: "Browse by category."
|
||||
layout: "paige/cloud"
|
||||
title: "Categories"
|
||||
---
|
||||
|
@ -1,4 +1,5 @@
|
||||
---
|
||||
description: "Browse by tag."
|
||||
layout: "paige/cloud"
|
||||
title: "Tags"
|
||||
---
|
||||
|
@ -0,0 +1,17 @@
|
||||
{{ define "main" }}
|
||||
{{ $page := . }}
|
||||
|
||||
{{ partial "paige/article.html" $page }}
|
||||
|
||||
{{ with $page.Pages }}
|
||||
<div id="paige-pages">
|
||||
<ul class="list-inline text-center">
|
||||
{{ range (sort . "Title") }}
|
||||
<li class="list-inline-item">
|
||||
<a href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
{{ end }}
|
||||
{{ end }}
|
Loading…
Reference in New Issue