Return to v1.4.5 docs

includeContent()



Used to output the content for a particular section in a layout.

Name Type Required Default Description
name string No body Name of layout section to return content for.
defaultValue string No What to display as a default if the section is not defined.
<!--- In your view template, let''s say `views/blog/post.cfm --->
<cfset contentFor(head=''<meta name="robots" content="noindex,nofollow">"'')>
<cfset contentFor(head=''<meta name="author" content="[email protected]"'')>

<!--- In `views/layout.cfm` --->
<html>
	<head>
	    <title>My Site</title>
	    ##includeContent("head")##
	</head>
	<body>
		<cfoutput>
			##includeContent()##
		</cfoutput>
	</body>
</html>