diff options
author | floppydiskette <git@diskfloppy.me> | 2024-08-08 15:35:48 +0100 |
---|---|---|
committer | floppydiskette <git@diskfloppy.me> | 2024-08-08 15:35:48 +0100 |
commit | 80cbe94dc0bef990e79c122909ac03c908639f09 (patch) | |
tree | 8a63a2341303daac4ac621f8f4962a81d684e88a /resources/views/components/toh-quote.blade.php | |
parent | 031aa417b8918d9067f062774f5228587e89ef36 (diff) | |
parent | bb3f6afc81902fb66fc2ceb4f5fe97420bf0d9f9 (diff) |
Merge branch 'redesign'
Diffstat (limited to 'resources/views/components/toh-quote.blade.php')
-rw-r--r-- | resources/views/components/toh-quote.blade.php | 12 |
1 files changed, 12 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..d9dfab1 --- /dev/null +++ b/resources/views/components/toh-quote.blade.php @@ -0,0 +1,12 @@ +<p class="quote"> + @foreach($quote["lines"] as $line) + <strong>{{ $line["character"] }}:</strong> + {{-- Literally only one thing will trigger this lmao --}} + @if($line["line"] == "*Rage squeals*") + {{ $line["line"] }} + @else + "{{ $line["line"] }}" + @endif<br> + @endforeach + <small>({{ $quote["attribution"] }})</small> +</p> |