<?php

include_theme_partial('header');
?>

<div id="main">

<?php 
include_theme_partial('sidebar-left');
?>

<div id="content-three-column">

<?php 
echo $sf_content;
?>

</div><!-- #content -->

<?php 
include_theme_partial('sidebar-right');
?>

</div><!-- #main -->

<hr/>

<?php 
include_theme_partial('footer');
<div id="wrapper">

<div id="header">

    <h1 id="site-title">
      <span>
        <a href="<?php 
url_for('@homepage', true);
?>
" title="<?php 
echo __($sf_response->getTitle(), '');
?>
"><?php 
echo __($sf_response->getTitle(), '');
?>
</a>
      </span>
    </h1>

    <div id="site-description"><?php 
$metas = $sf_response->getMetas();
echo $metas['description'] ? __($metas['description'], '') : '';
?>
</div>

<?php 
include_theme_partial('nav');
?>

</div><!-- #header -->
Example #3
0
              <li>
                <a href="<?php 
echo url_for('theme_blueprint_demo/forms');
?>
" title="<?php 
echo __('Forms', '', 'blueprint');
?>
"><?php 
echo __('Forms', '', 'blueprint');
?>
</a>
              </li>
            </ul>
          </li>
          <li>
            <a href="<?php 
echo url_for('theme_blueprint_demo/xhtmlTestPage');
?>
" title="<?php 
echo __('XHTML Test Page', '', 'blueprint');
?>
"><?php 
echo __('XHTML Test Page', '', 'blueprint');
?>
</a>
          </li>
<?php 
include_theme_partial('nav_themes');
?>
        </ul>
    </div><!-- #access -->
<?php include_theme_partial('header') ?>

<div id="container">
  <div id="content">

<?php echo $sf_content ?>

  </div><!-- #content -->
</div><!-- #container -->
<?php include_theme_partial('sidebar') ?>

<?php include_theme_partial('footer') ?>