Browse code

Progress

Benjamin Roth authored on21/02/2023 19:42:19
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,12 @@
1
+<h3><?php echo $this->headline; ?></h3>
2
+<div class="boxed spc_boxed"><p><?php echo $this->message; ?></p></div>
3
+
4
+<div class="info_containers">
5
+<?php foreach( $this->info as $type => $data ): ?>
6
+<div class="info_container <?php echo $type . ' ' . $data['class']; ?>"><?php if ($data['edit']): ?>
7
+    <a href="<?php echo $data['edit']; ?>" class="edit"><!--<svg class="ico ico-pencil"><use xlink:href="#ico-pencil"></use></svg>--> <?php echo $this->edit_info; ?></a><?php endif; ?>
8
+    <h4><?php echo $data['headline']; ?></h4>
9
+    <div class="info"><?php echo $data['info']; ?></div>
10
+</div>
11
+<?php endforeach; ?>
12
+</div>
0 13
\ No newline at end of file