Advertisement
Guest User

Untitled

a guest
Sep 26th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. <div id="content">
  2. <h1>Sitemap</h1>
  3.  
  4. {exp:structure_entries include_parent="false" }
  5. {if {depth} == 1}
  6. {if {children_total} > 1}{!-- Top Level --}
  7. <div class="sitemap">
  8. <h2><a href="{page_uri}">{title}</a></h2>
  9. {/if}
  10.  
  11. {if:else}{!-- Children (not top level) --}
  12. {if ({depth} == 2 && {sibling_total} > 1) || {depth} > 2}
  13. {if {sibling_count} == 1}{!-- First child - so open markup --}
  14. <ul>
  15. {/if}
  16. <li><a href="{page_uri}" class="colour-text">{title}</a>
  17.  
  18. {close_markup}
  19. {if {total_children} == 0 || {depth} == {restricted_depth}} </li>{/if}
  20. {if {last_sibling} && {sibling_count} == {sibling_total}}
  21. </ul><!-- End of level{depth} closing tags -->
  22. </li>
  23. {if {depth} == 2}
  24. </div>
  25. {/if}
  26. {/if}
  27. {/close_markup}
  28. {/if}
  29. {/if}
  30.  
  31. {/exp:structure_entries}
  32.  
  33. </div><!--/#content-->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement