This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cffunction name="dspGist" output="false"> | |
| <cfargument name="GistURL" type="string"> | |
| <cfsavecontent variable="retGist"> | |
| <cfoutput><script src="#GistURL#"></script></cfoutput> | |
| </cfsavecontent> | |
| <cfreturn retGist> | |
| </cffunction> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <link rel="stylesheet" href="#$.siteConfig('themeAssetPath')#/css/theme/theme.less"> | |
| <!--- LESS CDN ---> | |
| <script src="http://cdnjs.cloudflare.com/ajax/libs/less.js/2.5.0/less.min.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cfoutput> | |
| <!--- set galleryContentID to the Content ID of the Gallery you want to load ---> | |
| <cfset galleryContentID='contentID goes here'> | |
| <cfset it=$.getBean('content').loadBy(contentID=galleryContentID,siteID=event.getValue('siteID')).getKidsIterator()> | |
| <cfset it.setNextN(5)> | |
| <script type="text/javascript"> | |
| $("##slideshow").backstretch([ | |
| <cfloop condition="it.hasNext()"> | |
| <cfset sub1=it.next()> | |
| <cfif ! it.currentrow() IS 1> |
NewerOlder