Browse code

Initial commit

Benjamin Roth authored on26/03/2015 15:24:56
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,21 @@
1
+<?php $this->block('content'); ?>
2
+<?php //$this->dumpTemplateVars(); ?>
3
+
4
+<div class="layout_default client"<?php if (is_array($this->color)): ?> style="background-color: #<?php echo $this->color[0]; ?>;"<?php endif; ?>>
5
+	<div class="inside">
6
+		<div class="informations">
7
+			<h3><?php echo $this->title; ?></h3>
8
+			<ul class="projects_<?php echo count($this->projects); ?>">
9
+				<?php foreach ($this->projects as $project): ?><li><a href="<?php echo $project['link']; ?>"><?php echo $project['title']; ?></a></li><?php endforeach; ?>
10
+			</ul>
11
+		</div>
12
+<?php if ($this->logo_neutral): ?>
13
+		<figure class="image_container">
14
+			<img class="top" src="<?php echo $this->logo_neutral['src']; ?>" <?php echo $this->logo_neutral['attributes']; ?> data-hoverimage="<?php echo $this->logo_neutral['src']; ?>">
15
+			<img class="back" src="<?php echo $this->logo_original['src']; ?>" <?php echo $this->logo_original['attributes']; ?> data-hoverimage="<?php echo $this->logo_original['src']; ?>">
16
+		</figure>
17
+<?php endif; ?>
18
+	</div>
19
+</div>
20
+
21
+<?php $this->endblock(); ?>
0 22
\ No newline at end of file