blob: 07893b6462b2a633926125d581657ea71313830f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
@extends('template')
@section('body')
<canvas id = "bg">
</canvas>
<main>
<header>
<img width = "50%" src = "{{ Storage::url('kyanite.jpg') }}"></img><br>
<br><h3>Kyanite</h3>
<h4 >(a band)</h4>
<p>
<ul style = "text-decoration: none;">
<li><a href = "https://www.instagram.com/anowysz/">Alex - Guitar</a></li>
<li><a href = "">Isaac - Bass Guitar</a></li>
<li><a href = "">Rei - Vocals</a></li>
<li><a href = "grothe.tr@gmail.com">Thomas - Drums</a></li>
</p>
</header>
<section id = "description">
<p>We are a band started in January of 2024, influenced mostly by progressive rock, desert rock, metal, jazz, and classic rock, but also by a lot of other stuff. </p>
</section>
<section>
<h4>Previous Performances</h4>
<p>So far just one: <a href = "https://www.youtube.com/playlist?list=PLpI3aaG3WLhAYbbU9KwECOS5t9rbbqauA">Skunkfest 2024</a>. </p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/videoseries?si=5T1lYQKx7QpSJ4Os&list=PLpI3aaG3WLhAYbbU9KwECOS5t9rbbqauA" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</section>
<section id = "repertoire">
<h4>Repertoire</h4>
<?php
$files = Storage::disk('public')->files('band');
?>
@foreach ($files as $file)
@php
$fn = substr($file, 5);
@endphp
<!--<audio controls>
<source src="/f/{{ $file }}" type="audio/mpeg">
Your browser does not support the audio element.
</audio>-->
<a href="/mu/{{ $fn }}">{{ $fn }}</a>
@endforeach
</section>
</main>
@endsection
|