Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. <div class="post">
  2. <h3 class="title">
  3. <span class="date">
  4. <span class="day"> !!php dynamic day of the date!! </span>
  5. <span class="month"> !!php dynamic month of the date!! </span>
  6. </span>
  7. <a href="#"> !!php dynamic title of the node!! </a>
  8. </h3>
  9. <div class="content">
  10. <p> !!php dynamic content(body) of the node!! </p>
  11. <div class="read-more" >
  12. <a href="#"> !!php dynamic read more text!! </a>
  13. </div>
  14. </div> <!-- end: content -->
  15. </div> <!-- end: post1 -->
  16.  
  17. <div id="node-<?php print $node->nid; ?>" class="<?php print $classes; ?> post clearfix"<?php print $attributes; ?>>
  18. <?php print render($title_prefix); ?>
  19. <?php if (!$page): ?>
  20. <h3 class="title">
  21. <span class="date">
  22. <span class="day"> <?php print $date_day; ?> </span>
  23. <span class="month"> <?php print $date_month;?> </span>
  24. </span>
  25. <a href="<?php print $node_url; ?>"><?php print $title; ?> </a>
  26. </h3>
  27. <?php endif; ?>
  28. <?php print render($title_suffix); ?>
  29. <div class="content"<?php print $content_attributes; ?>>
  30. <?php
  31. hide($content['comments']);
  32. hide($content['links']);
  33. print render($content);
  34. ?>
  35. <div class="read-more">
  36. <?php print render($content['links']); ?>
  37. </div>
  38. </div> <!-- end: content -->
  39. </div> <!-- end: post1 -->
  40.  
  41. <span class="day"> <?php print $date_day; ?> </span>
  42. <span class="month"> <?php print $date_month;?> </span>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement