Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. <table class="wrapper">
  2. <div class="nl_banner">
  3. <?php
  4. print render($content['field_nl_banner_image']);
  5. print $title;
  6. ?>
  7. </div>
  8. <div class="main">
  9. <?php print $date; ?>
  10. <div class="feature">
  11. <div class="feature_content">
  12. <h2 class="feature_title"><?php print $feature['nl_title'][0]['value']; ?></h2>
  13. <div class="feature_body"><?php print $feature['body'][0]['value']; ?></div>
  14. </div>
  15. <div class="nl_feature_image">
  16. <img src="<?php print $feature['nl_image']['url']; ?>" />
  17. </div>
  18. </div>
  19.  
  20. <table width="600" border="0" cellpadding="0" cellspacing="0">
  21. <tr>
  22. <td bgcolor="#999999">
  23. ...
  24. </td>
  25. </tr>
  26. <tr>
  27. <td>
  28. <!-- nesting another table is just like a colspan -->
  29. <table width="100%" border="0" cellpadding="0" cellspacing="0">
  30. <tr>
  31. <td width="50%" bgcolor="#444444">
  32. ...
  33. </td>
  34. <td width="50%" bgcolor="#777777">
  35. ...
  36. </td>
  37. </tr>
  38. </table>
  39. </td>
  40. </tr>
  41. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement