Skip to content

Commit

Permalink
Merge pull request #2524 from jekyll/all-html-files
Browse files Browse the repository at this point in the history
  • Loading branch information
parkr committed Jun 23, 2014
2 parents a762956 + a78b5c2 commit b0e51e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/jekyll/site.rb
Expand Up @@ -341,7 +341,7 @@ def site_payload
"posts" => posts.sort { |a, b| b <=> a },
"pages" => pages,
"static_files" => static_files.sort { |a, b| a.relative_path <=> b.relative_path },
"html_pages" => pages.reject { |page| !page.html? },
"html_pages" => pages.select { |page| page.html? || page.url.end_with?("/") },
"categories" => post_attr_hash('categories'),
"tags" => post_attr_hash('tags'),
"collections" => collections,
Expand Down

0 comments on commit b0e51e2

Please sign in to comment.