You are here

styleguide-palette.tpl.php in Style Guide 7

Displays a list of color swatches.

Available variables:

  • $swatches: An array of color swatches.

See also

template_preprocess_styleguide_swatch()

File

styleguide_palette/templates/styleguide-palette.tpl.php
View source
<?php

/**
 * @file
 * Displays a list of color swatches.
 *
 * Available variables:
 * - $swatches: An array of color swatches.
 *
 * @see template_preprocess_styleguide_swatch()
 *
 * @ingroup themeable
 */
?>
<div class="styleguide-palette">
<?php

if ($empty) {
  ?>
<div class="styleguide-palette-empty">
  <?php

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

}
foreach ($swatches as $swatch) {
  ?>
<div class="styleguide-palette-swatch">
  <?php

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

}
?>
</div>