art/_includes
Meitar M 4e4f981b8c
Fix bug where some pages where not shown as tiles.
This commit refactors the `tiles.html` include file so that when the
`site.tiles-source` is pages, pages with `show_tile: false` set in their
Front Matter are not counted as having been shown. Prior to this commit,
such pages were iterated over in the `for` loop, consuming a loop
iteration from the `site.tiles-count` counter.

Put another way, say you have set `tiles-count` to 6, and you have a
total of 10 pages. Of these ten pages, six have `show_tile` set to
`false`. The natural expectation would be that the home page layout
would display four tiles (10 - 6 = 4), but in fact, the exact number of
page tiles shown would depend on the specific lexicographical ordering
of the `site.html_pages` array, which could result in fewer than four
page tiles being shown.

This commit fixes the issue by excluding pages with `show_tile` set to
`false` first, and only then iterating over the remaining pages.
2020-01-31 14:21:40 -05:00
..
footer.html Update footer.html 2017-07-05 22:13:04 +00:00
head.html Add page titles to <title> element. 2020-01-30 19:20:58 -05:00
header.html Fix bug causing non-HTML pages to be displayed in tiles. 2020-01-12 20:31:35 -05:00
tiles.html Fix bug where some pages where not shown as tiles. 2020-01-31 14:21:40 -05:00