1. <cfparam name="view" default="default" />
  2. <html>
  3.     <head>
  4.         <title>King's Executive Retreats</title>
  5.         <meta http-equiv="Content-Type" content="text/html; charset=windows-1250">
  6.         <link href="css/style.css" rel="stylesheet" type="text/css">
  7.     </head>
  8.     
  9.     <body>
  10.         
  11.         <div id="wrapper">
  12.             <div class="header_lt">
  13.                 <img alt="King's Executive Retreats" width="123" height="145" src="images/logo.jpg"/>
  14.             </div>
  15.             <div class="header_rt">
  16.                 <div class="navMenu">
  17.                     <ul>
  18.                         <li><a href="index.cfm?view=properties" title="view properties">home</a></li>
  19.                         <li><a href="index.cfm?view=agents" title="view agents">the<br/>settings</a></li>
  20.                         <li><a href="#" title="">how it<br />works</a></li>
  21.                         <li><a href="index.cfm?view=support" title="contact key element support">area<br />activities</a></li>
  22.                         <li><a href="#" title="">contact</a></li>
  23.                     </ul>
  24.                 </div>    
  25.             </div>
  26.             
  27.             <div style="clear:both;">
  28.                 <div class="homeContent_lt">
  29.                     <img alt="" width="286" height="335" src="images/home_image.jpg"/>
  30.     
  31.     
  32.                 </div>
  33.                 <div class="homeContent_rt">
  34.                     <!--- start view code here --->            
  35.                     <cfswitch expression="#view#">
  36.                         <cfcase value="welcome"><cfinclude template="views/view_welcome.cfm"></cfcase>
  37.                         
  38.                         <cfdefaultcase><cfinclude template="views/default.cfm"></cfdefaultcase>
  39.                     </cfswitch>
  40.                     <!--- end view code here --->
  41.                     
  42.                 </div>
  43.             </div>
  44.             
  45.             <div style="clear:both;">
  46.                 <div class="homeUnit_lt">
  47.                     <img alt="" width="150" height="100" src="images/unit1_home.jpg" align="left" />
  48.                     <h3>&gt;&gt;unit one</h3>
  49.                     This unit is a 4000 square foot home with 4 bedrooms, large living room with lake view, weight room, hot tube, beautiful deck, pool table plus much more.
  50.                     <a href="">learn more...</a>
  51.                 </div>    
  52.                 <div class="homeUnit_rt">
  53.                     <img alt="" width="150" height="100" src="images/unit2_home.jpg" align="right" />    
  54.                     <h3>&gt;&gt;unit two</h3>
  55.                     This unit is a 2000 square foot home with 400 square foot guest house with private dock, huge deck, 4 bedrooms plus much more.        
  56.                     <a href="">learn more...</a>    
  57.                     <br />            
  58.                 </div>
  59.             </div>
  60.             
  61.             <div style="clear:both;" class="footer">
  62.                 Copyright © <cfoutput>#year(now())#</cfoutput> King's Executive Retreats
  63.             </div>
  64.             
  65.             <div style="clear:both;"></div>
  66.         </div>
  67.     
  68.     </body>
  69. </html>