Full ELMS Learning Network documentation
views-view-list--nodequeue-7--block.tpl.php
×
Error message
User warning: The following module is missing from the file system: theme/theme. For information about how to fix this, see the documentation page. in _drupal_trigger_error_with_delayed_logging() (line 1156 of /var/www/html/elmsln_community/api.elmsln.org/includes/bootstrap.inc).Default simple view template to display a list of rows.
- $title : The title of this group of rows. May be empty.
- $options['type'] will either be ul or ol.
File
profiles/cis/themes/cis-theme/templates/views-view-list--nodequeue-7--block.tpl.phpView source
- <?php
-
- /**
- * @file
- * Default simple view template to display a list of rows.
- *
- * - $title : The title of this group of rows. May be empty.
- * - $options['type'] will either be ul or ol.
- * @ingroup views_templates
- */
- ?>
- <div class="light-triangle-down triangle-overflow border-step-center"></div>
- <div class="row accolades-wrapper">
- <div class="small-centered columns small-11 large-8">
- <h2 class="block-title"><?php print t('Accolades'); ?></h2>
- <?php print $wrapper_prefix; ?>
- <?php if (!empty($title)) : ?>
- <h3><?php print $title; ?></h3>
- <?php endif; ?>
- <?php print $list_type_prefix; ?>
- <?php foreach ($rows as $id => $row): ?>
- <li class="<?php print $classes_array[$id]; ?>"><?php print $row; ?></li>
- <?php endforeach; ?>
- <?php print $list_type_suffix; ?>
- <?php print $wrapper_suffix; ?>
- </div>
- </div>
- <div class="light-triangle-down triangle-overflow border-step-center"></div>