Browse code

Remove obsolete class name and span

Benjamin Roth authored on25/08/2016 15:31:26
Showing1 changed files
... ...
@@ -19,7 +19,7 @@
19 19
 <h2><?php echo $item['headline']; ?></h2>
20 20
 <?php endif; ?>
21 21
 
22
-<?php echo $item['text']; ?> <a href="<?php echo $item['href']; ?>" title="<?php echo $item['readMore']; ?>" class="more handwritten-small"><?php echo $item['more']; ?> <span class="invisible"><?php echo $item['more']; ?></span></a>
22
+<?php echo $item['text']; ?> <a href="<?php echo $item['href']; ?>" title="<?php echo $item['readMore']; ?>" class="more"><?php echo $item['more']; ?></a>
23 23
 </li>
24 24
 <?php endforeach; ?>
25 25
 </ul>
Browse code

Use different title tag text and fix typo

Benjamin Roth authored on25/08/2016 15:30:03
Showing1 changed files
... ...
@@ -19,7 +19,7 @@
19 19
 <h2><?php echo $item['headline']; ?></h2>
20 20
 <?php endif; ?>
21 21
 
22
-<?php echo $item['text']; ?> <a href="<?php echo $item['href']; ?>" title="<?php echo $item['readmore']; ?>" class="more handwritten-small"><?php echo $item['more']; ?> <span class="invisible"><?php echo $item['more']; ?></span></a>
22
+<?php echo $item['text']; ?> <a href="<?php echo $item['href']; ?>" title="<?php echo $item['readMore']; ?>" class="more handwritten-small"><?php echo $item['more']; ?> <span class="invisible"><?php echo $item['more']; ?></span></a>
23 23
 </li>
24 24
 <?php endforeach; ?>
25 25
 </ul>
Browse code

Initial commit

Benjamin Roth authored on31/05/2016 12:14:26
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,25 @@
1
+<ul class="layout_pagelist">
2
+<?php foreach ($this->items as $item): ?>
3
+<li class="<?php echo $item['class']; ?>">
4
+
5
+<?php if ($item['picture']): ?>
6
+    <figure class="image_container">
7
+
8
+        <?php if ($item['href']): ?><a href="<?= $item['href'] ?>"<?php if ($item['title']): ?> title="<?= $item['title'] ?>"<?php endif; ?><?= $this->attributes ?>><?php endif; ?>
9
+
10
+            <?php $this->insert('picture_default', $item['picture']->picture); ?>
11
+
12
+            <?php if ($item['href']): ?></a><?php endif; ?>
13
+
14
+    </figure>
15
+<?php endif; ?>
16
+
17
+<?php if ($item['headline']): ?>
18
+
19
+<h2><?php echo $item['headline']; ?></h2>
20
+<?php endif; ?>
21
+
22
+<?php echo $item['text']; ?> <a href="<?php echo $item['href']; ?>" title="<?php echo $item['readmore']; ?>" class="more handwritten-small"><?php echo $item['more']; ?> <span class="invisible"><?php echo $item['more']; ?></span></a>
23
+</li>
24
+<?php endforeach; ?>
25
+</ul>