ColdBox HMVC Documentation
ColdBox HMVC Documentation
Master Class
cfcasts
6.x
Introduction
Intro
Release History
About This Book
Author
For Newbies
60 Minute Quick Start
Getting Started
Getting Started Guide
Installation
Conventions
Configuration
The Basics
Request Context
Routing
Event Handlers
Layouts & Views
Views
Layouts
Basic Layouts
Default Layout
Nested Layouts
Overriding Layouts
Layouts From A Module
Layout Helpers
Layout Events
Implicit Layout-View Declarations
Helpers UDF's
ColdBox Elixir
Models
HMVC
Modules
Testing
Testing Quick Start
Testing ColdBox Applications
Digging Deeper
Async Programming
REST handler
Interceptors
Flash RAM
HTML Helper
ColdBox Proxy
Request Context Decorator
Controller Decorator
Recipes
Architecture Concepts
What is MVC
What is ColdBox
How ColdBox Works
Testing Concepts
External links
Source code
Issue tracker
LogBox
CacheBox
WireBox
Powered by GitBook

Basic Layouts

<cfoutput>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>#prc.title#</title>
</head>
<body>
<!--- Header: Direct Render --->
#renderView( view='tags/header')#
​
<div id="content">
<!--- Render set view --->
#renderView()#
</div>
​
#renderView( view='tags/footer' )#
</body>
</html>
</cfoutput>
Previous
Layouts
Next
Default Layout
Last updated 3 years ago
Edit on GitHub