Class: Octopress::Paginate::SiteHook

Inherits:
Hooks::Site
  • Object
show all
Defined in:
lib/octopress-paginate/hooks.rb

Instance Method Summary collapse

Instance Method Details

#post_read(site) ⇒ Object



6
7
8
9
10
# File 'lib/octopress-paginate/hooks.rb', line 6

def post_read(site)
  site.pages.select {|p| p.data['paginate'] }.each do |page|
    Octopress::Paginate.paginate(page)
  end
end