Skip to content

Instantly share code, notes, and snippets.

@Stwissel
Last active December 11, 2015 21:28
Show Gist options
  • Save Stwissel/4662223 to your computer and use it in GitHub Desktop.
Save Stwissel/4662223 to your computer and use it in GitHub Desktop.
Docpad Struggles
# Configure DocPad
docpadConfig = {
templateData:
# Get a collection of available categories
getCategoryList: ->
workCollection = @getCollection('documents')
resultCollection = {}
for document in workCollection
resultCollection[document.category] = document.category
return resultCollection
}
# Export
module.exports = docpadConfig
<ul>
<% for category in @getCategoryList(): %>
<li>
<a href="/byCategory/<%= category %>.html">
<%= category %>
</a>
</li>
<% end %>
</ul>
---
layout: default
author: "Stephan H Wissel"
category: ["After hours", "Twins"]
---
Having <b>Twins</b> is fun
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment