Guest User

Untitled

a guest
Apr 25th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. <ul id="Menu2">
  2. <% if Parent %>
  3. <% control Siblings %>
  4. <li class="$LinkingMode">
  5. <a class="$LinkingMode levela" href="$Link" title="<% _t('GOTO', 'Go to the "') %>{$Title}<% _t('PAGE', ' page.') %>"><span><em>$MenuTitle</em></span></a>
  6. <% if LinkOrSection = section %>
  7. <% if Children %>
  8. <ul class="sub">
  9. <% control Children %>
  10. <li class="$LinkingMode">
  11. <a class="$LinkingMode levelb" href="$Link" title="<% _t('GOTO', 'Go to the "') %>{$Title}<% _t('PAGE', ' page.') %>"><span><em>$MenuTitle</em></span></a>
  12. </li>
  13. <% end_control %>
  14. </ul>
  15. <% end_if %>
  16. <% end_if %>
  17. </li>
  18. <% end_control %>
  19. <% else %>
  20. <% if Children %>
  21. <% control Children %>
  22. <li class="$LinkingMode">
  23. <a class="$LinkingMode levela" href="$Link" title="<% _t('GOTO', 'Go to the "') %>{$Title}<% _t('PAGE', ' page.') %>"><span><em>$MenuTitle</em></span></a>
  24. </li>
  25. <% end_control %>
  26. <% else %>
  27. <li class="$LinkingMode">
  28. <% _t('NOCHILDREN', 'None.') %>
  29. </li>
  30. <% end_if %>
  31. <% end_if>
  32. </ul>
Add Comment
Please, Sign In to add comment