Guest User

Untitled

a guest
May 11th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <cfoutput>
  2. <div id="footer">
  3.     Copyright &copy; ABC #year(now())#. All Rights Reserved
  4.     <br/>
  5.    
  6.     <cfset children = $.content().getKidsIterator(false)>
  7.     <ul>
  8.     <cfloop condition="#children.hasNext()#">
  9.         <cfset it = children.next()>
  10.         <li class="<cfif not children.hasNext()>last</cfif>"><a href="#it.getValue('url')#">#it.getValue('title')#</a></li>
  11.     </cfloop>
  12.     </ul>
  13.    
  14. </div>
  15. </cfoutput>
Add Comment
Please, Sign In to add comment