You are here

mixitup_views_sorting.tpl.php in MixItUp Views 7

Template for MixItUp sorting items.

File

templates/mixitup_views_sorting.tpl.php
View source
<?php

/**
 * @file
 * Template for MixItUp sorting items.
 */
?>
<div class="sort_wrapper form-item">
  <strong><?php

print t('Sort by');
?></strong>
  <div class="sort default" data-sort="default"><?php

print t('Default');
?></div>
  <?php

foreach ($sorts as $sort_field => $label) {
  ?>
    <div class="sort asc sort_item" data-sort="<?php

  print $sort_field;
  ?>"> <?php

  print $label;
  ?></div>
  <?php

}
?>
</div>