annotate modules/contrib/views_slideshow/templates/views-slideshow-pager-field-item.html.twig @ 13:5fb285c0d0e3

Update Drupal core to 8.4.7 via Composer. Security update; I *think* we've been lucky to get away with this so far, as we don't support self-registration which seems to be used by the so-called "drupalgeddon 2" attack that 8.4.5 was vulnerable to.
author Chris Cannam
date Mon, 23 Apr 2018 09:33:26 +0100
parents c69a71b4f40f
children
rev   line source
Chris@5 1 {#
Chris@5 2 /**
Chris@5 3 * @file
Chris@5 4 * Default theme implementation for a views slideshow pager item.
Chris@5 5 *
Chris@5 6 * Available variables:
Chris@5 7 * - classes: Classes to apply to the element.
Chris@5 8 * - count: The page number.
Chris@5 9 * - location: Location of pager.
Chris@5 10 * - item: Rendered field(s) making up item.
Chris@5 11 * - vss_id: The slideshow's id.
Chris@5 12 *
Chris@5 13 * @see template_preprocess_views_slideshow_pager_field_item()
Chris@5 14 *
Chris@5 15 * @ingroup vss_templates
Chris@5 16 */
Chris@5 17 #}
Chris@5 18 <div id="views_slideshow_pager_field_item_{{ location }}_{{ vss_id }}_{{ count }}" {{ attributes.addClass(classes) }}>
Chris@5 19 {{ item }}
Chris@5 20 </div>