<div class="<?php echo $this->class; ?> block" <?php echo $this->cssID; ?>>
	<div class="<?php echo $this->field('darstellung')->value(); ?> block">
		<figure class="image_container">
			<?php echo $this->replaceInsertTags('{{image::'.$this->field('bild')->value().'}}'); ?>
		</figure>
		<div class="teambox_content">
			<h3><span><?php echo $this->field('name')->value(); ?></span></h3>
			<?php if($this->field('beschreibung')->value()): ?><div class="beschreibung"><?php echo $this->field('beschreibung')->value(); ?></div><?php endif; ?>
			<?php if($this->field('tel')->value()): ?><div class="tel"><?php echo $this->field('tel')->value(); ?></div><?php endif; ?>
		
			<?php if(count($this->group('socials')) > 0): ?> 
				<div class="teambox_socials">
				<?php foreach($this->group('socials') as $i => $fields): ?>
					<a href="<?php echo $this->field('soclink#'.$i)->value(); ?>" target="_blank"><i class="<?php echo $this->field('icon#'.$i)->value(); ?>"></i></a>
				<?php endforeach; ?>
				</div>
			<?php endif; ?>
			
		</div>
	</div>
</div>