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
| item.getTitle() |
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
| <ul class="nav nav-list"> | |
| <li class="nav-header">Custom Nav</li> | |
| <li><a href="">Title 1</a></li> | |
| <li><a href="">Title 2</a></li> | |
| ... | |
| <ul> |
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
| /{SiteID}/includes/themes/MuraBootstrap/templates/inc/vertical_nav.cfm |
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
| /{SiteID}/includes/themes/MuraBootstrap/eventHandler.cfc |
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
| {context}/{SiteID}/includes/themes/{ThemeName}/templates/components/example.cfm |
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
| #$.dspThemeInclude('display_objects/sampleModalWindow.cfm')# |
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
| <script src="#$.siteConfig('themeAssetPath')#/assets/uniform/jquery.uniform.min.js" type="text/javascript"></script> | |
| <!--- valid themes: default, agent, aristo, jeans ---> | |
| <link rel="stylesheet" href="#$.siteConfig('themeAssetPath')#/assets/uniform/themes/agent/css/uniform.agent.min.css" type="text/css" media="screen" charset="utf-8" /> | |
| <script type="text/javascript"> | |
| jQuery(document).ready(function($){ | |
| $("input, textarea, select, button, a.button").uniform(); | |
| }); | |
| </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
| <a href="./?mobileFormat=true">Mobile Site</a> |
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
| <cfif YesNoFormat($.content('hasMobileBody'))> | |
| #$.dspBody( | |
| body=$.content('mobileBody') | |
| ,pageTitle='' | |
| ,crumbList=0 | |
| ,showMetaImage=0 | |
| )# | |
| <cfelse> | |
| #$.dspBody( | |
| body=$.content('body') |
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
| {context}/{SiteID}/includes/contentRenderer.cfc | |
| {context}/{SiteID}/includes/eventHandler.cfc | |
| {context}/{SiteID}/includes/email | |
| {context}/{SiteID}/includes/display_objects/custom | |
| {context}/{SiteID}/includes/plugins | |
| {context}/{SiteID}/includes/themes | |
| <!-- Nothing under the themes directory will ever get touched by an auto-update. --> |