-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f4900d5
commit ed78801
Showing
7 changed files
with
127 additions
and
127 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<div class="p-4"> | ||
<div class="text-center mb-4 md:mb-0"> | ||
<div class="p-8 text-center bg-pink-200 rounded-lg overflow-hidden cursor-pointer"> | ||
<iframe style="border-radius: 12px" | ||
src="https://open.spotify.com/embed/album/{{ $album }}?utm_source=generator" | ||
width="100%" height="352" allowfullscreen="" | ||
allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" | ||
loading="lazy"> | ||
</iframe> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<div class="w-full relative bg-center min-h-[10vh] sm:min-h-[30vh] md:min-h-[70vh]" style="background-image: url('{{ $artist->HeaderImg }}'); background-size: cover;"> | ||
<div class="absolute inset-0 flex flex-col justify-center items-center p-4 sm:p-8 text-center text-white"> | ||
<h1 class="text-2xl sm:text-4xl md:text-7xl font-medium mb-2 font-noto-serif uppercase"> | ||
{{ $artist->Name }} | ||
</h1> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
|
||
<!-- performances and btn--> | ||
@foreach ($performances as $performance) | ||
<div class="text-center"> | ||
<div class="flex flex-col bg-[#FCC040] items-center p-4 md:p-8 m-6"> | ||
<p class=" text-base sm:text-lg"> | ||
Come to {{ $performance->Day->Venue->Name }} | ||
on {{ date('j F', strtotime($performance->StartDateTime)) }} | ||
to enjoy {{ $artist->Name }}'s music!<br/> | ||
{{ date('H:i', strtotime($performance->StartDateTime)) }} | ||
- {{ date('H:i', strtotime($performance->EndDateTime)) }} | ||
@if (trim($performance->Details) !== '') | ||
| {{ $performance->Details }} | ||
@endif | ||
@if ($performance->Price != '0.00') | ||
- € {{ number_format($performance->Price, 2) }} | ||
@endif | ||
</p> | ||
@if ($performance->Price != '0.00') | ||
<div class="mt-4 flex justify-center w-full"> | ||
@if ($performance->AvailableTickets > 0) | ||
<a href="/agenda/purchase?name={{$artist->Name}}" class="p-2 sm:p-3 rounded-md font-semibold uppercase cursor-pointer text-sm sm:text-base w-48 bg-pink-500 text-black"> | ||
Buy Tickets!</a> | ||
@else | ||
<button class="p-2 sm:p-3 rounded-md font-semibold uppercase cursor-pointer text-sm sm:text-base w-48 bg-red-500 text-white" disabled> | ||
Sold Out | ||
</button> | ||
@endif | ||
</div> | ||
@else | ||
<div class="mt-4 flex justify-center"> | ||
<span class="inline-block p-2 sm:p-3 rounded-md font-semibold uppercase cursor-pointer text-sm sm:text-base text-black"> | ||
For free! | ||
</span> | ||
</div> | ||
@endif | ||
</div> | ||
</div> | ||
@endforeach |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<div class="p-4"> | ||
<div class="text-center mb-4 md:mb-0"> | ||
<div class="p-8 bg-pink-200 text-center overflow-hidden cursor-pointer block"> | ||
<iframe style="border-radius: 12px" | ||
src="https://open.spotify.com/embed/track/{{ $song }}?utm_source=generator" | ||
width="100%" height="352" allowfullscreen="" | ||
allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" | ||
loading="lazy"> | ||
</iframe> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters