Skip to content

Instantly share code, notes, and snippets.

@briward
Created November 20, 2015 19:14
Show Gist options
  • Save briward/92d47e0f008f8a99fb23 to your computer and use it in GitHub Desktop.
Save briward/92d47e0f008f8a99fb23 to your computer and use it in GitHub Desktop.
<!-- views-view-fields.tpl.php -->
...
<?php foreach ($fields as $id => $field): ?>
<?php if (!empty($field->separator)): ?>
<?php print $field->separator; ?>
<?php endif; ?>
<div class="view-content pure-u-1-2">
<?php print $field->wrapper_prefix; ?>
<?php print $field->label_html; ?>
<?php print $field->content; ?>
<?php print $field->wrapper_suffix; ?>
</div>
<?php endforeach; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment