Skip to content

Instantly share code, notes, and snippets.

@floreal
floreal / tag_pages.rb
Last active December 4, 2017 20:55
nanoc tag page gemerator + links to those
# Provides feature related to page tagging
#
module TagPages
# finds out every item containing tags
# @return Array an array of Nanoc::Item
def tagged_items
@items.select do |item|
item[:tags].is_a? Array
end
end