Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 341 Bytes

basic-layouts.md

File metadata and controls

24 lines (21 loc) · 341 Bytes

Basic Layouts

<cfoutput>
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>#prc.title#</title>
</head>
<body>
  <!--- Header: Direct Render --->
  #view( view='tags/header')#

  <div id="content">
    <!--- Render set view --->
    #view()#
  </div>

  #view( view='tags/footer' )#
</body>
</html>
</cfoutput>