Advertisement
Guest User

Untitled

a guest
Jun 3rd, 2010
302
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.58 KB | None | 0 0
  1. <div class="typography">
  2.  
  3.     <% include SideBar %>
  4.            
  5.     <div id="Body" >
  6.  
  7.         <div id="ContentHeader">
  8.             <b>You are here:</b> $Breadcrumbs
  9.         </div> 
  10.            
  11.         <div class="content">
  12.        
  13.             <h1>$Title</h1>
  14.            
  15.             <% if PageQuote %><blockquote>$PageQuote</blockquote><% end_if %>
  16.            
  17.             $Content   
  18.            
  19.             <% if Children %>
  20.            
  21.             <h2>Categories:</h2>
  22.             <ul>
  23.             <% control Children %>
  24.                 <li>
  25.                     <h3>
  26.                         <a href="$Link">$Title</a>
  27.                     </h3>
  28.                 </li>
  29.             <% end_control %>
  30.             </ul>
  31.             <% end_if %>
  32.            
  33.            
  34.             $ApplyForm
  35.            
  36.         </div>
  37.                    
  38.     </div>
  39.        
  40. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement