Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ISSUE-21: Index all pages (not just blog pages)
Previously we only included links that end with `.html` from the different sitemaps. Now we include all pages. The same conditions used to exclude some specifig pages from our index has been left in place. We also exclude URLs with a hash param. Reject condition: `x.match?(/#.+\z/) || x.include?('page') || x.include?('/tags/') || x.include?('author')` We removed the where condition in the links_controller. Now links without published_at will show. This also means that links without published_at will appear at the top of the links page. See: https://stackoverflow.com/a/44912964 See: #21
- Loading branch information