Actions

Source Code of This Project

/apps/frontend/modules/portfolio/templates/_colOne.php

<div id="logo">
    <h1><?php echo get_response_meta('title') ?></h1>
    <h2><?php echo get_response_meta('description') ?></h2>
</div>

<div class="box">
    <h3 id="navigation">Navigation</h3>
    <ul class="bottom itemsNav">
        <?php foreach ($portfolio as $num => $project): ?>
            <?php $selected = ((true == $sf_context->get('scrollSet')) and $num == 0) ? 'first curr ui-corner-all' : '' ?>
            <li class="<?php echo $selected ?>" >
                <?php if (true == $sf_context->get('scrollSet')): ?>
                    <?php echo $project->getTitle() ?>
                <?php else: ?>
                    <a href="#<?php echo $project->getTitle()?>"><?php echo $project->getTitle() ?></a>
                <?php endif; ?>
            </li>
        <?php endforeach; ?>
    </ul>
</div>

<div class="box">
    <h3>Settings</h3>
    <ul class="bottom">
        <li><?php include_partial('global/scrollCheckBox') ?></li>
    </ul>
</div>