23 lines
762 B
PHP
23 lines
762 B
PHP
<?php $this->get_element('subnavigation_portfolio', array('aktiv'=>'webdesign')); ?>
|
|
|
|
<div id="inhalt">
|
|
<h2>Webseiten-Projekte</h2>
|
|
<?php $this->say('page_navigator', 'string', null, true); ?>
|
|
|
|
<?php foreach( $this->get('referenzen') as $projekt ) { ?>
|
|
<div class="referenz">
|
|
<div class="thumbnail"><?php $projekt->say('link'); ?></div>
|
|
<div class="description">
|
|
<h3><?php $projekt->say('title'); ?></h3>
|
|
<p><b>Kunde:</b> <?php $projekt->say('client'); ?></p>
|
|
<p><b>Auftrag:</b> <?php $projekt->say('assignment'); ?></p>
|
|
<p><a href="<?php $projekt->say('url'); ?>" class="symbol"><?php $projekt->say('url_text'); ?></a></p>
|
|
</div>
|
|
</div>
|
|
|
|
<?php } // end foreach ?>
|
|
|
|
<?php $this->say('page_navigator', 'string', null, true); ?>
|
|
|
|
</div>
|