Actions

Source Code of This Project

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

<div class="box">
    <a name="<?php echo $project->getTitle() ?>"></a>
    <h3><?php echo $project->getTitle() ?></h3>
    <h4>URL: <?php echo $project->getUrl() ?></h4>
    <div class="bottom">
        <?php echo $project->getContent() ?>
        <?php $images = $project->getImages() ?>
        <?php foreach ($images as $image): ?>
            <div id="galleryId_<?php echo $project->getId() ?>" class="fl" style="margin-right:10px;">
                <?php echo $image->getTitle() ?>
                <div class="clear5"></div>
                <a class="overlay" href="<?php echo $image->buildPathImage('0x0') ?>" title="<?php echo $image->getTitle() ?>">
                    <img class="image" src="<?php echo $image->buildPathImage('120x0') ?>" alt="<?php echo $image->getTitle() ?>" title="<?php echo $image->getTitle() ?>" />
                </a>
            </div>
        <?php endforeach; ?>
        <div class="clear"></div>
    </div>
</div>