Mercurial > hg > isophonics-drupal-site
comparison modules/contrib/views_slideshow/templates/views-slideshow-controls-text.html.twig @ 5:c69a71b4f40f
Add slideshow module
author | Chris Cannam |
---|---|
date | Thu, 07 Dec 2017 14:46:23 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
4:8948ab6c87d2 | 5:c69a71b4f40f |
---|---|
1 {# | |
2 /** | |
3 * @file | |
4 * Default theme implementation for a views slideshow text controls. | |
5 * | |
6 * Available variables: | |
7 * - classes: Classes to apply to the control. | |
8 * - rendered_control_next: Text next control. | |
9 * - rendered_control_pause: Text pause control. | |
10 * - rendered_control_previous: Text previous control. | |
11 * - vss_id: The slideshow's id. | |
12 * | |
13 * @see template_preprocess_views_slideshow_controls_text() | |
14 * | |
15 * @ingroup vss_templates | |
16 */ | |
17 #} | |
18 <div id="views_slideshow_controls_text_{{ vss_id }}" {{ attributes.addClass(classes) }}> | |
19 {{ rendered_control_previous }} | |
20 {{ rendered_control_pause }} | |
21 {{ rendered_control_next }} | |
22 </div> |