aboutsummaryrefslogtreecommitdiff
path: root/vendor/flexi/examples/02_quotes/templates/quotes.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/flexi/examples/02_quotes/templates/quotes.php')
-rw-r--r--vendor/flexi/examples/02_quotes/templates/quotes.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/vendor/flexi/examples/02_quotes/templates/quotes.php b/vendor/flexi/examples/02_quotes/templates/quotes.php
deleted file mode 100644
index b494cca..0000000
--- a/vendor/flexi/examples/02_quotes/templates/quotes.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<? $title = 'Zitate'; ?>
-<div id="header">Zitate <span class="amp">&amp;</span> mehr</div>
-
-<h2>Zitat des Tages (<?= date('d.m.Y', $time) ?>)</h2>
-<p>
- <em>
- „<?= $quote_of_the_day['quote'] ?>“
- </em>
- (<?= $quote_of_the_day['author'] ?>)
-</p>
-
-
-<? if (sizeof($quotes)) : ?>
- <h2>Mehr Zitate</h2>
- <? foreach ($quotes as $quote) : ?>
- <p>
- <em>
- „<?= $quote['quote'] ?>“
- </em>
- (<?= $quote['author'] ?>)
- </p>
- <? endforeach ?>
-<? endif ?>