Created
April 2, 2014 03:31
-
-
Save clrockwell/d32d8bca283fbfce6064 to your computer and use it in GitHub Desktop.
Another example of a simple .tpl.php file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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