Actions

Source Code of This Project

/apps/frontend/modules/resume/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>Navigation</h3>
    <ul class="bottom itemsNav">
        <?php foreach ($resume as $num => $part): ?>
            <?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 $part->getTitle() ?>
                <?php else: ?>
                    <a href="#<?php echo $part->getTitle()?>"><?php echo $part->getTitle() ?></a>
                <?php endif; ?>
            </li>
        <?php endforeach; ?>
    </ul>
</div>

<div class="box">
    <h3>Actions</h3>
    <ul class="bottom">
        <li><a href="<?php echo url_for('@resume_index?format=print') ?>" title="print"><span class="fl mr2 icons iconPrint"></span>Print page</a></li>
        <li><a href="<?php echo url_for('@resume_index?format=pdf') ?>" title="print"><span class="fl mr2 icons iconPdf"></span>Save in PDF</a></li>
    </ul>
</div>

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