Is there a way to set a variable with cfset that looks more like a cdata tag p>
or is there another way to have a page with some basic variables and a couple of longer variables set for the main content;
t
<cfoutput>
<CFSET page_title = "TITLE">
<CFSET examplevariable = "ABC">
<CFSET content>
<div>
bunch of content without any cf tags
</div>
</CFSET>
<cfinclude template="include/layout.cfm">
</cfoutput>
source
share