aboutsummaryrefslogtreecommitdiff
path: root/resources/views/components/toh-quote.blade.php
diff options
context:
space:
mode:
authorFrankie B <floppydisk@hyprcat.net>2024-08-08 04:00:49 +0100
committerFrankie B <floppydisk@hyprcat.net>2024-08-08 04:00:49 +0100
commitc148b6237ae561efdc727efab7f7188b1afb9cd4 (patch)
tree197ff6a0ad1b2215cdec946c0fbf6737d2d86cc8 /resources/views/components/toh-quote.blade.php
parente3f67fec07884b70e2a988ac0bb8cf6c9a750582 (diff)
Add random quotesredesign
Diffstat (limited to 'resources/views/components/toh-quote.blade.php')
-rw-r--r--resources/views/components/toh-quote.blade.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/resources/views/components/toh-quote.blade.php b/resources/views/components/toh-quote.blade.php
new file mode 100644
index 0000000..898b001
--- /dev/null
+++ b/resources/views/components/toh-quote.blade.php
@@ -0,0 +1,6 @@
+<p class="quote">
+ @foreach($quote["lines"] as $line)
+ <strong>{{ $line["character"] }}:</strong> "{{ $line["line"] }}"<br>
+ @endforeach
+ <small>({{ $quote["attribution"] }})</small>
+</p>