2020-01-12 12:50:21 +00:00
|
|
|
//- Needs page, pageIndex
|
|
|
|
|
|
|
|
mixin timeline_page(page, pageIndex)
|
2020-01-14 14:38:33 +00:00
|
|
|
section.timeline-page
|
|
|
|
- const pageNumber = pageIndex + 1
|
|
|
|
if pageNumber > 1
|
|
|
|
header.page-number(id=`page-${pageNumber}`)
|
|
|
|
span.number Page #{pageNumber}
|
2020-01-12 12:50:21 +00:00
|
|
|
|
2020-06-21 13:03:41 +00:00
|
|
|
.timeline-inner(class=`${settings.timeline_columns}-columns`)
|
2020-01-18 15:38:14 +00:00
|
|
|
- const suggestedSize = 260 //- from css :(
|
2020-01-14 14:38:33 +00:00
|
|
|
each image in page
|
2020-01-26 14:56:59 +00:00
|
|
|
- const thumbnail = image.getSuggestedThumbnailP(suggestedSize) //- use this as the src in case there are problems with srcset
|
2020-02-21 12:35:19 +00:00
|
|
|
a(href=`/p/${image.data.shortcode}` data-shortcode=image.data.shortcode).sized-link
|
2020-05-10 12:27:59 +00:00
|
|
|
//- using config_width twice because the proxy makes it square
|
|
|
|
img(src=thumbnail.src alt=image.getAlt() width=thumbnail.config_width height=thumbnail.config_width srcset=image.getThumbnailSrcsetP() sizes=image.getThumbnailSizes()).sized-image
|