Skip to content

Instantly share code, notes, and snippets.

@clrockwell
Created April 2, 2014 03:31
Show Gist options
  • Save clrockwell/d32d8bca283fbfce6064 to your computer and use it in GitHub Desktop.
Save clrockwell/d32d8bca283fbfce6064 to your computer and use it in GitHub Desktop.
Another example of a simple .tpl.php file
<?php
/* $presskits */
?>
<table class="presskit-schedule schedule-table" border="0" cellpadding="10">
<?php
foreach ($presskits as $itemNo => $kit) {
?>
<tr class="presskit_row-<?php print $itemNo % 2 == 0 ? 'even' : 'odd'; ?>">
<td class="presskit-schedule_presskit-company">
<?php print $kit->company_name; ?>
</td>
<td class="presskit-schedule_presskit-title">
<?php print l($kit->title,
file_create_url($kit->uri),
array('attributes' => array(
'target' => '_blank')
)
); ?>
</td>
</tr>
<?php
} // end the day foreach
?>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment