-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshows.html
More file actions
1052 lines (1018 loc) · 73.2 KB
/
Copy pathshows.html
File metadata and controls
1052 lines (1018 loc) · 73.2 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Audycje SilesiaFM</title>
<link rel="stylesheet" href="./src/css/style.css">
</head>
<body class="min-h-screen">
<div class="flex flex-col min-h-screen antialiased bg-white scroll-smooth ">
<nav class="fixed top-0 left-0 w-full z-40 bg-sky-50
border-b border-sky-500 px-4 py-2.5">
<div
class="grid gap-y-2 md:grid-cols-[min-content,_auto,min-content] lg:grid-cols-[minmax(min-content,_15rem),_auto,min-content] items-center ">
<div class="flex gap-x-4 justify-start items-center pr-4">
<a href=" ./index.html" class="flex items-center justify-between">
<span class="self-center text-2xl font-bold whitespace-nowrap text-sky-700">Silesia.fm</span>
</a>
</div>
<div class="hidden md:flex md:col-span-1 gap-x-2 pr-6 items-center">
<div class="flex items-center gap-x-2">
<div class="motion-safe:animate-pulse motion-reduce:hidden w-5 h-5 bg-red-700 rounded-full">
</div>
<span class="hidden lg:inline whitespace-nowrap font-bold text-lg text-sky-900">Na żywo</span>
</div>
<button role="button" data-audio="#audio" aria-label="Play current show"
data-tooltip-target="play-button-tooltip" data-tooltip-placement="bottom"
class="p-2 text-sky-700 transition duration-200 bg-sky-200 rounded-lg cursor-pointer hover:text-sky-900 hover:bg-sky-300 focus:bg-sky-300 focus:text-sky-700 focus:ring-2 focus:ring-sky-400">
<svg data-audio-play xmlns="http://www.w3.org/2000/svg" fill="currentColor" class="w-5 h-5"
viewBox="0 0 384 512">
<path
d="M73 39c-14.8-9.1-33.4-9.4-48.5-.9S0 62.6 0 80V432c0 17.4 9.4 33.4 24.5 41.9s33.7 8.1 48.5-.9L361 297c14.3-8.7 23-24.2 23-41s-8.7-32.2-23-41L73 39z" />
</svg>
<svg data-audio-pause xmlns="http://www.w3.org/2000/svg" fill="currentColor"
class="hidden w-5 h-5" viewBox="0 0 384 512">
<path
d="M48 64C21.5 64 0 85.5 0 112V400c0 26.5 21.5 48 48 48H80c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48H48zm192 0c-26.5 0-48 21.5-48 48V400c0 26.5 21.5 48 48 48h32c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48H240z" />
</svg>
<span class="sr-only">Play current show</span>
</button>
<div id="play-button-tooltip" role="tooltip"
class="absolute z-10 invisible inline-block px-3 py-2 text-sm font-medium text-white bg-sky-600 rounded-lg shadow-sm transition duration-200 opacity-0 tooltip">
Grać
<div class="tooltip-arrow" data-popper-arrow></div>
</div>
<p class="basis-full text-sky-900 whitespace-nowrap font-semibold">
Okno na południe
</p>
<button role="button" data-tooltip-target="like-button-tooltip" aria-label="Like this show"
data-tooltip-placement="bottom"
class="p-2 text-sky-700 transition duration-200 rounded-lg bg-sky-200 cursor-pointer hover:text-sky-900 hover:bg-sky-300 focus:bg-sky-300 focus:text-sky-700 focus:ring-2 focus:ring-sky-400 ">
<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" class="w-5 h-5"
viewBox="0 0 512 512">
<path
d="M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9L464.4 300.4c30.4-28.3 47.6-68 47.6-109.5v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5z" />
</svg>
<span class="sr-only">Like</span>
</button>
<div id="like-button-tooltip" role="tooltip"
class="absolute z-10 invisible inline-block px-3 py-2 text-sm font-medium text-white bg-sky-600 rounded-lg shadow-sm transition duration-200 opacity-0 tooltip">
Zapisz do uliubionych
<div class="tooltip-arrow" data-popper-arrow></div>
</div>
<button role="button" type="button" aria-label="open-player" aria-label="Open interactive player"
data-tooltip-target="player-button-tooltip" data-tooltip-placement="bottom"
class="p-2 text-sky-700 transition duration-200 rounded-lg bg-sky-200 cursor-pointer hover:text-sky-900 hover:bg-sky-300 focus:bg-sky-300 focus:text-sky-700 focus:ring-2 focus:ring-sky-400 "
data-drawer-target="player-drawer" data-drawer-backdrop="false"
data-drawer-toggle="player-drawer" data-drawer-placement="top" data-drawer-body-scrolling="true"
aria-controls="player-drawer" aria-expanded="false">
<svg aria-hidden="true" class="w-5 h-5 transition duration-200" fill="currentColor"
viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clip-rule="evenodd"></path>
</svg>
</button>
<div id="player-button-tooltip" role="tooltip"
class="absolute z-10 invisible inline-block px-3 py-2 text-sm font-medium text-white bg-sky-600 rounded-lg shadow-sm transition duration-200 opacity-0 tooltip">
Otwórz player
<div class="tooltip-arrow" data-popper-arrow></div>
</div>
<a href="./schedule.html" aria-label="go to schedule" data-tooltip-target="schedule-button-tooltip"
data-tooltip-placement="bottom"
class="p-2 text-sky-700 transition duration-200 rounded-lg bg-sky-200 cursor-pointer hover:text-sky-900 hover:bg-sky-300 focus:bg-sky-300 focus:text-sky-700 focus:ring-2 focus:ring-sky-400 "
aria-expanded="false">
<svg xmlns="http://www.w3.org/2000/svg" class="w-5 h-5" fill="currentColor"
viewBox="0 0 448 512">
<path
d="M96 32V64H48C21.5 64 0 85.5 0 112v48H448V112c0-26.5-21.5-48-48-48H352V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V64H160V32c0-17.7-14.3-32-32-32S96 14.3 96 32zM448 192H0V464c0 26.5 21.5 48 48 48H400c26.5 0 48-21.5 48-48V192z" />
</svg>
</a>
<div id="schedule-button-tooltip" role="tooltip"
class="absolute z-10 invisible inline-block px-3 py-2 text-sm font-medium text-white bg-sky-600 rounded-lg shadow-sm transition duration-200 opacity-0 tooltip">
Ramówka
<div class="tooltip-arrow" data-popper-arrow></div>
</div>
</div>
<div class=" col-start-3 justify-end flex items-center gap-x-2">
<form action="#" method="GET" class="hidden md:block md:w-36 lg:w-48">
<label for="sidebar-search" class="sr-only">Szukaj na stronie</label>
<div class="relative">
<div class="flex absolute inset-y-0 left-0 items-center pl-3 pointer-events-none">
<svg class="w-6 h-6 text-sky-500 " fill="currentColor" viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M8 4a4 4 0 100 8 4 4 0 000-8zM2 8a6 6 0 1110.89 3.476l4.817 4.817a1 1 0 01-1.414 1.414l-4.816-4.816A6 6 0 012 8z">
</path>
</svg>
</div>
<input type="text" name="search" aria-label="Search" role="search" id="sidebar-search"
class="pl-10 input" placeholder="Szukaj..." />
</div>
</form>
<button role="button" type="button" data-drawer-toggle="drawer-navigation"
aria-controls="drawer-navigation"
class="p-2 md:hidden text-sky-600 transition duration-200 bg-sky-200 rounded-lg cursor-pointer hover:text-sky-700 hover:bg-sky-300 focus:bg-sky-300 focus:text-sky-700 focus:ring-2 focus:ring-sky-400 ">
<span class="sr-only">Toggle search</span>
<svg aria-hidden="true" class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
<path clip-rule="evenodd" fill-rule="evenodd"
d="M8 4a4 4 0 100 8 4 4 0 000-8zM2 8a6 6 0 1110.89 3.476l4.817 4.817a1 1 0 01-1.414 1.414l-4.816-4.816A6 6 0 012 8z">
</path>
</svg>
</button>
<a href="./konto.html#login" class="flex font-medium items-center p-2 text-sky-700 transition duration-200 bg-sky-200 rounded-lg
cursor-pointer hover:text-sky-900 hover:bg-sky-300 focus:bg-sky-300 focus:ring-2 focus:ring-sky-500 ">
<span class="sr-only">Log in</span>
<svg xmlns="http://www.w3.org/2000/svg" class="w-5 h-5" viewBox="0 0 512 512"
fill="currentColor">
<path
d="M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H418.3c16.4 0 29.7-13.3 29.7-29.7C448 383.8 368.2 304 269.7 304H178.3z" />
</svg>
<span class="ml-1 hidden lg:block text-sky-800">Konto</span>
</a>
<button role="button" data-drawer-target="drawer-navigation" data-drawer-toggle="drawer-navigation"
aria-controls="drawer-navigation"
class="p-2 text-sky-700 transition duration-200 lg:hidden bg-sky-200 rounded-lg cursor-pointer hover:text-sky-800 hover:bg-sky-300 focus:bg-sky-300 focus:text-sky-800 focus:ring-2 focus:ring-sky-400 ">
<svg aria-hidden="true" class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M3 5a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 10a1 1 0 011-1h6a1 1 0 110 2H4a1 1 0 01-1-1zM3 15a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1z"
clip-rule="evenodd"></path>
</svg>
<svg aria-hidden="true" class="hidden w-6 h-6" fill="currentColor" viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z"
clip-rule="evenodd"></path>
</svg>
<span class="sr-only">Toggle sidebar</span>
</button>
</div>
</div>
</nav>
<!-- MOBILE PLAYER HEADER -->
<div
class="md:hidden border-b border-sky-500 px-4 py-2 bg-sky-50 fixed left-0 right-0 top-14 z-30 flex gap-x-2 items-center">
<div class="flex items-center gap-x-2">
<div class="motion-safe:animate-pulse motion-reduce:hidden w-5 h-5 bg-red-700 rounded-full"></div>
</div>
<button role="button" aria-label="Play current show" data-audio="#audio"
class="p-2 text-sky-700 transition duration-200 rounded-lg bg-sky-200 cursor-pointer hover:text-sky-900 hover:bg-sky-300 focus:bg-sky-300 focus:text-sky-700 focus:ring-2 focus:ring-sky-400 ">
<svg data-audio-play xmlns="http://www.w3.org/2000/svg" fill="currentColor" class="w-5 h-5"
viewBox="0 0 384 512">
<path
d="M73 39c-14.8-9.1-33.4-9.4-48.5-.9S0 62.6 0 80V432c0 17.4 9.4 33.4 24.5 41.9s33.7 8.1 48.5-.9L361 297c14.3-8.7 23-24.2 23-41s-8.7-32.2-23-41L73 39z" />
</svg>
<svg data-audio-pause xmlns="http://www.w3.org/2000/svg" fill="currentColor" class="hidden w-5 h-5"
viewBox="0 0 384 512">
<path
d="M48 64C21.5 64 0 85.5 0 112V400c0 26.5 21.5 48 48 48H80c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48H48zm192 0c-26.5 0-48 21.5-48 48V400c0 26.5 21.5 48 48 48h32c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48H240z" />
</svg>
<span class="sr-only">Play current show</span>
</button>
<p class="flex-auto basis-full text-sky-900 truncate font-semibold">
Okno na południe
</p>
<button role="button" aria-label="Like this show"
class="p-2 text-sky-700 transition duration-200 rounded-lg bg-sky-200 cursor-pointer hover:text-sky-900 hover:bg-sky-300 focus:bg-sky-300 focus:text-sky-700 focus:ring-2 focus:ring-sky-400 ">
<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" class="w-5 h-5" viewBox="0 0 512 512">
<path
d="M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9L464.4 300.4c30.4-28.3 47.6-68 47.6-109.5v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5z" />
</svg>
<span class="sr-only">Like</span>
</button>
<button role="button" type="button" aria-label="Open interactive player"
class="p-2 text-sky-700 transition duration-200 rounded-lg bg-sky-200 cursor-pointer hover:text-sky-900 hover:bg-sky-300 focus:bg-sky-300 focus:text-sky-700 focus:ring-2 focus:ring-sky-400 "
data-drawer-target="player-drawer" data-drawer-backdrop="false" data-drawer-toggle="player-drawer"
data-drawer-placement="top" data-drawer-body-scrolling="true" aria-controls="player-drawer"
aria-expanded="false">
<svg aria-hidden="true" class="w-5 h-5 transition duration-200" fill="currentColor" viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clip-rule="evenodd"></path>
</svg>
</button>
<a href="./schedule.html" aria-label="go to schedule"
class="p-2 text-sky-700 transition duration-200 rounded-lg bg-sky-200 cursor-pointer hover:text-sky-900 hover:bg-sky-300 focus:bg-sky-300 focus:text-sky-700 focus:ring-2 focus:ring-sky-400 "
aria-expanded="false">
<svg xmlns="http://www.w3.org/2000/svg" class="w-5 h-5" fill="currentColor" viewBox="0 0 448 512">
<path
d="M96 32V64H48C21.5 64 0 85.5 0 112v48H448V112c0-26.5-21.5-48-48-48H352V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V64H160V32c0-17.7-14.3-32-32-32S96 14.3 96 32zM448 192H0V464c0 26.5 21.5 48 48 48H400c26.5 0 48-21.5 48-48V192z" />
</svg>
</a>
</div>
<!-- EXAMPLE SONG -->
<audio loop id="audio">
<source src="./src/audio/example-song.mp3" type="audio/mpeg">
</audio>
<!-- PLAYER DRAWER -->
<div id="player-drawer"
class="fixed top-0 rounded-b-xl left-0 right-0 z-[25] w-full pt-28 lg:w-[calc(100%-16rem)] lg:left-64 md:pt-16 transition-transform -translate-y-full bg-white/80 backdrop-blur-3xl"
tabindex="-1">
<div class="grid divide-y-2 divide-sky-700 px-4 py-4 xl:grid-cols-2 xl:divide-y-0 xl:divide-x-2">
<div class="flex flex-col gap-y-2 pb-4 xl:pb-0 xl:pr-4">
<header class="flex justify-between items-center font-semibold text-sky-900 text-lg">
<div class=" flex items-center space-x-1">
<div class="motion-safe:animate-pulse motion-reduce:hidden bg-red-500 w-2 h-2 rounded-full">
</div>
<span>Katowice</span>
</div>
<p>10:00 - 15:00</p>
</header>
<div class="flex items-start gap-x-3">
<button role="button" data-audio="#audio" aria-label="Play current show" type="button"
data-tooltip-placement="top"
class="relative overflow-hidden rounded-md basis-1/2 max-w-[10rem] shrink-0" tabindex="-1">
<img src="./src/images/shows/2.webp" alt="Okno na południe">
<div class="bg-sky-900/40 z-10 p-2 absolute inset-0">
<div class="flex items-center p-1 text-white rounded-lg absolute bottom-2 left-2">
<svg data-audio-play xmlns="http://www.w3.org/2000/svg" fill=' currentColor'
class="w-6 h-6" viewBox="0 0 384 512">
<path
d="M73 39c-14.8-9.1-33.4-9.4-48.5-.9S0 62.6 0 80V432c0 17.4 9.4 33.4 24.5 41.9s33.7 8.1 48.5-.9L361 297c14.3-8.7 23-24.2 23-41s-8.7-32.2-23-41L73 39z" />
</svg>
<svg data-audio-pause xmlns="http://www.w3.org/2000/svg" fill="currentColor"
class="hidden w-6 h-6" viewBox="0 0 384 512">
<path
d="M48 64C21.5 64 0 85.5 0 112V400c0 26.5 21.5 48 48 48H80c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48H48zm192 0c-26.5 0-48 21.5-48 48V400c0 26.5 21.5 48 48 48h32c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48H240z" />
</svg>
</div>
</div>
</button>
<div class="flex-auto flex flex-col">
<h4 class="font-bold leading-none mb-1.5 tracking-wide text-xl text-sky-900">Okno
na
południe</h4>
<p class="hidden sm:block text-sm md:text-base font-medium text-sky-800">Okno na południe w
Radiu Silesia
od poniedziałku
do
piątku od
10:00 do 15:00. Spoglądamy przez nasze radiowe okno ...</p>
</div>
</div>
</div>
<div class="flex flex-col gap-y-2 pt-4 xl:pt-0 xl:pl-4">
<header class="flex justify-between items-center font-semibold text-sky-900 text-lg">
<div class=" flex items-center space-x-1">
<span>Katowice</span>
</div>
<p>15:00 - 20:00</p>
</header>
<div class="flex items-start gap-x-3">
<div class="relative overflow-hidden rounded-md basis-1/2 max-w-[10rem] shrink-0">
<img src="./src/images/shows/3.webp" class="skyscale brightness-50" alt="Okno na południe">
<div class=" z-10 p-2 absolute inset-0 flex justify-center items-center">
<h4 class="text-xl text-sky-200 font-bold">Następny</h4>
</div>
</div>
<div class="flex-auto flex flex-col">
<h4 class="font-bold leading-none mb-1.5 tracking-wide text-xl text-sky-900">Szlaglista</h4>
<p class="hidden sm:block text-sm md:text-base font-medium text-sky-800">SzlagLista to lista
Waszych
ulubionych szlagierów w
Radiu
Silesia 96.2 FM. Specjalnie dla Was zagramy </p>
</div>
</div>
</div>
</div>
</div>
<!-- Sidebar -->
<aside class="fixed top-0 left-0 z-[31] w-full max-w-[16rem] h-screen pt-14 transition-transform -translate-x-full bg-sky-50 border-r
border-sky-500 lg:translate-x-0 " aria-label="Sidenav" id="drawer-navigation">
<div class="flex flex-col overflow-y-auto py-5 px-4 h-full">
<form action="#" method="GET" class="md:hidden mb-2">
<label for="mobile-sidebar-search" class="sr-only">Szukaj na stronie</label>
<div class="relative">
<div class="flex absolute inset-y-0 left-0 items-center pl-3 pointer-events-none">
<svg class="w-6 h-6 text-sky-500 " fill="currentColor" viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M8 4a4 4 0 100 8 4 4 0 000-8zM2 8a6 6 0 1110.89 3.476l4.817 4.817a1 1 0 01-1.414 1.414l-4.816-4.816A6 6 0 012 8z">
</path>
</svg>
</div>
<input type="text" name="search" aria-label="Search" role="search" id="mobile-sidebar-search"
class="pl-10 input" placeholder="Szukaj..." />
</div>
</form>
<ul class="md:space-y-1">
<li>
<a href="./shows.html"
class="flex items-center p-2 text-base font-medium text-sky-900 rounded-lg transition duration-75 bg-sky-200 border border-sky-500">
<img src="./src/icons/tv-svgrepo-com.svg" class="w-8 h-8 lg:w-6 lg:h-6" alt="Audycje">
<span class="ml-3">Audycje</span>
</a>
</li>
<li>
<a href="./podcasts.html"
class="flex items-center p-2 text-base font-medium text-sky-900 rounded-lg transition duration-75 hover:bg-sky-200 focus:ring-4 focus:ring-sky-500">
<img src="./src/icons/microphone-broadcast-svgrepo-com.svg" class="w-8 h-8 lg:w-6 lg:h-6"
alt="Podkasty">
<span class="ml-3">Podkasty</span>
</a>
</li>
<li>
<a href="./schedule.html"
class="flex items-center p-2 text-base font-medium text-sky-900 rounded-lg transition duration-75 hover:bg-sky-200 focus:ring-4 focus:ring-sky-500">
<img src="./src/icons/clock-svgrepo-com.svg" class="w-8 h-8 lg:w-6 lg:h-6" alt="Ramówka">
<span class="ml-3">Ramówka</span>
</a>
</li>
<li>
<a href="./index.html#events"
class="flex items-center p-2 text-base font-medium text-sky-900 rounded-lg transition duration-75 hover:bg-sky-200 focus:ring-4 focus:ring-sky-500">
<img src="./src/icons/pin-svgrepo-com.svg" class="w-8 h-8 lg:w-6 lg:h-6" alt="Wydarzenia">
<span class="ml-3">Wydarzenia</span>
</a>
</li>
<li>
<a href="#"
class="flex items-center p-2 text-base font-medium text-sky-900 rounded-lg transition duration-75 hover:bg-sky-200 focus:ring-4 focus:ring-sky-500">
<img src="./src/icons/talk-svgrepo-com.svg" class="w-8 h-8 lg:w-6 lg:h-6" alt="Kontakt">
<span class="ml-3">Kontakt</span>
</a>
</li>
</ul>
<ul class="pt-3 mt-3 md:pt-4 md:mt-4 md:space-y-1 border-t border-sky-500 ">
<li>
<button role="button" type="button"
class="flex items-center p-2 w-full text-base font-medium text-sky-900 rounded-lg transition duration-75 group hover:bg-sky-200 focus:ring-4 focus:ring-sky-500 focus:ring-4 focus:ring-sky-500"
aria-controls="dropdown-info" data-collapse-toggle="dropdown-info">
<img src="./src/icons/file-svgrepo-com.svg" class="w-8 h-8 lg:w-6 lg:h-6" alt="Informacje">
<span class="flex-1 ml-3 text-left whitespace-nowrap">Informacje</span>
<svg aria-hidden="true" class="w-8 h-8 lg:w-6 lg:h-6" fill="currentColor"
viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clip-rule="evenodd"></path>
</svg>
</button>
<ul id="dropdown-info" class="hidden py-2 space-y-2">
<li>
<a href="#"
class="flex items-center px-2 py-1 pl-8 w-full text-base font-medium text-sky-900 rounded-lg transition duration-75 group hover:bg-sky-200 focus:ring-2 focus:ring-sky-500">O
nas</a>
</li>
<li>
<a href="#"
class="flex items-center px-2 py-1 pl-8 w-full text-base font-medium text-sky-900 rounded-lg transition duration-75 group hover:bg-sky-200 focus:ring-2 focus:ring-sky-500">Reklama</a>
</li>
<li>
<a href="#"
class="flex items-center px-2 py-1 pl-8 w-full text-base font-medium text-sky-900 rounded-lg transition duration-75 group hover:bg-sky-200 focus:ring-2 focus:ring-sky-500">Praca</a>
</li>
</ul>
</li>
<li>
<button role="button" type="button"
class="flex items-center p-2 w-full text-base font-medium text-sky-900 rounded-lg transition duration-75 group hover:bg-sky-200 focus:ring-4 focus:ring-sky-500 focus:ring-4 focus:ring-sky-500"
aria-controls="dropdown-regulations" data-collapse-toggle="dropdown-regulations">
<img src="./src/icons/notebook-svgrepo-com.svg" class="w-8 h-8 lg:w-6 lg:h-6"
alt="Regulaminy">
<span class="flex-1 ml-3 text-left whitespace-nowrap">Regulaminy</span>
<svg aria-hidden="true" class="w-8 h-8 lg:w-6 lg:h-6" fill="currentColor"
viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
clip-rule="evenodd"></path>
</svg>
</button>
<ul id="dropdown-regulations" class="hidden py-2 md:space-y-1">
<li>
<a href="#"
class="flex items-center px-2 py-1 pl-8 w-full text-base font-medium text-sky-900 rounded-lg transition duration-75 group hover:bg-sky-200 focus:ring-2 focus:ring-sky-500">Konkursy</a>
</li>
<li>
<a href="#"
class="flex items-center px-2 py-1 pl-8 w-full text-base font-medium text-sky-900 rounded-lg transition duration-75 group hover:bg-sky-200 focus:ring-2 focus:ring-sky-500">Samoregulacja</a>
</li>
</ul>
</li>
<li>
<a href="#"
class="flex items-center p-2 text-base font-medium text-sky-900 rounded-lg transition duration-75 hover:bg-sky-200 focus:ring-4 focus:ring-sky-500">
<img src="./src/icons/star-svgrepo-com.svg" class="w-8 h-8 lg:w-6 lg:h-6"
alt="Zostań patronem">
<span class="ml-3">Zostań patronem</span>
</a>
</li>
</ul>
<div class="flex-auto flex justify-center items-end">
<a href="#" aria-labelby="instagram"
class="text-sky-700 transition duration-150 hover:bg-sky-700 hover:text-white p-2 rounded-lg focus:ring-4 focus:ring-sky-300">
<svg xmlns="http://www.w3.org/2000/svg" class="w-8 h-8 md:w-7 md:h-7" viewBox="0 0 448 512"
fill="currentColor">
<path
d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z" />
</svg>
</a>
<a href="#" aria-label="facebook"
class="text-sky-700 transition duration-150 hover:bg-sky-700 hover:text-white p-2 rounded-lg focus:ring-4 focus:ring-sky-300">
<svg xmlns="http://www.w3.org/2000/svg" class="w-8 h-8 md:w-7 md:h-7" viewBox="0 0 448 512"
fill="currentColor">
<path
d="M400 32H48A48 48 0 0 0 0 80v352a48 48 0 0 0 48 48h137.25V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.27c-30.81 0-40.42 19.12-40.42 38.73V256h68.78l-11 71.69h-57.78V480H400a48 48 0 0 0 48-48V80a48 48 0 0 0-48-48z" />
</svg>
</a>
<a href="#" aria-label="twitter"
class="text-sky-700 transition duration-150 hover:bg-sky-700 hover:text-white p-2 rounded-lg focus:ring-4 focus:ring-sky-300">
<svg xmlns="http://www.w3.org/2000/svg" class="w-8 h-8 md:w-7 md:h-7" viewBox="0 0 448 512"
fill="currentColor">
<path
d="M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM351.3 199.3v0c0 86.7-66 186.6-186.6 186.6c-37.2 0-71.7-10.8-100.7-29.4c5.3 .6 10.4 .8 15.8 .8c30.7 0 58.9-10.4 81.4-28c-28.8-.6-53-19.5-61.3-45.5c10.1 1.5 19.2 1.5 29.6-1.2c-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3c-9-6-16.4-14.1-21.5-23.6s-7.8-20.2-7.7-31c0-12.2 3.2-23.4 8.9-33.1c32.3 39.8 80.8 65.8 135.2 68.6c-9.3-44.5 24-80.6 64-80.6c18.9 0 35.9 7.9 47.9 20.7c14.8-2.8 29-8.3 41.6-15.8c-4.9 15.2-15.2 28-28.8 36.1c13.2-1.4 26-5.1 37.8-10.2c-8.9 13.1-20.1 24.7-32.9 34c.2 2.8 .2 5.7 .2 8.5z" />
</svg>
</a>
<a href="#" aria-label="youtube"
class="text-sky-700 transition duration-150 hover:bg-sky-700 hover:text-white p-2 rounded-lg focus:ring-4 focus:ring-sky-300">
<svg xmlns="http://www.w3.org/2000/svg" class="w-8 h-8 md:w-7 md:h-7" viewBox="0 0 576 512"
fill="currentColor">
<path
d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z" />
</svg>
</a>
</div>
</div>
</aside>
<main class="flex-auto basis-full flex flex-col lg:ml-64 pt-14">
<div class="px-4 pt-16 pb-4 md:py-8 ">
<ol class="flex flex-wrap items-center whitespace-nowrap" aria-label="Breadcrumb">
<li class="inline-flex items-center">
<a class="flex items-center text-sky-700 hover:text-sky-800 focus:outline-none focus:text-sky-800"
href="./index.html">
Strona główna
</a>
<svg class="flex-shrink-0 mx-2 overflow-visible h-4 w-4 text-sky-400"
xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="m9 18 6-6-6-6" />
</svg>
</li>
<li class="inline-flex items-center font-semibold text-sky-700 truncate" aria-current="page">
Audycje
</li>
</ol>
</div>
<div class="flex-auto">
<section class="px-4 pb-4 sm:pb-6 md:pb-8">
<header class="flex justify-between items-center mb-4 md:mb-8">
<h1 class="text-sky-800 text-2xl sm:text-3xl lg:text-4xl font-bold">Audycje
</h1>
</header>
<div
class="grid relative justify-center grid-cols-[repeat(auto-fit,_minmax(16rem,_1fr))] lg:grid-cols-[repeat(auto-fit,_minmax(20rem,_1fr))] gap-6 min-[540px]:gap-9 xl:gap-12">
<a href="./show-example.html" class="card group/card">
<div class="card-image-holder">
<img src="./src/images/shows/1.webp" class="card-image group-hover/card:scale-105"
alt="Lepsza strona poranka">
</div>
<div class="p-4 flex-auto">
<header class="card-header group-hover/card:text-sky-700">
<h3 class='text-lg font-medium'>
Lepsza strona poranka
</h3>
<div class="flex gap-x-2 text-xs font-medium">
<span class="">
<i class="fa-solid fa-comment"></i>
1000
</span>
<span class="">
<i class="fa-solid fa-eye"></i>
10,000
</span>
</div>
</header>
<p class="text-sm mb-1 last:mb-0">od poniedziałku do piątku, 06:00 - 10:00</p>
<p class="text-sm mb-1 last:mb-0">Wstawanie o świcie nie musi być koszmarem! U nas
króluje
uśmiech i słoneczna
atmosfera...</p>
</div>
</a>
<a href="./show-example.html" class="card group/card">
<div class="card-image-holder">
<img src="./src/images/shows/2.webp" class="card-image group-hover/card:scale-105"
alt="Okno na południe">
</div>
<div class="p-4 flex-auto">
<header class="card-header group-hover/card:text-sky-700">
<h3 class='text-lg font-medium '>
Okno na południe
</h3>
<div class="flex gap-x-2">
<span class="text-xs font-medium">
<i class="fa-solid fa-comment"></i>
1000
</span>
<span class="text-xs font-medium ">
<i class="fa-solid fa-eye"></i>
10,000
</span>
</div>
</header>
<p class="text-sm mb-1 last:mb-0">od poniedziałku do piątku
,10:00 - 15:00</p>
<p class="text-sm mb-1 last:mb-0">Okno na południe w Radiu Silesia od poniedziałku do
piątku od
10:00 do 15:00. Spoglądamy przez nasze radiowe okno ...</p>
</div>
</a>
<a href="./show-example.html" class="card group/card">
<div class="card-image-holder">
<img src="./src/images/shows/3.webp" class="card-image group-hover/card:scale-105"
alt="Szlaglista">
</div>
<div class="p-4 flex-auto">
<header class="card-header group-hover/card:text-sky-700">
<h3 class='text-lg font-medium '>
Szlaglista
</h3>
<div class="flex gap-x-2">
<span class="text-xs font-medium">
<i class="fa-solid fa-comment"></i>
1000
</span>
<span class="text-xs font-medium ">
<i class="fa-solid fa-eye"></i>
10,000
</span>
</div>
</header>
<p class="text-sm mb-1 last:mb-0">w poniedziałek, 15:00 - 20:00</p>
<p class="text-sm mb-1 last:mb-0">SzlagLista to lista Waszych ulubionych szlagierów w
Radiu
Silesia 96.2 FM. Specjalnie dla Was zagramy ...</p>
</div>
</a>
<a href="./show-example.html" class="card group/card">
<div class="card-image-holder">
<img src="./src/images/shows/4.webp" class="card-image group-hover/card:scale-105"
alt="Wygodny fotel">
</div>
<div class="p-4 flex-auto">
<header class="card-header group-hover/card:text-sky-700">
<h3 class='text-lg font-medium '>
Wygodny fotel
</h3>
<div class="flex gap-x-2">
<span class="text-xs font-medium">
<i class="fa-solid fa-comment"></i>
1000
</span>
<span class="text-xs font-medium ">
<i class="fa-solid fa-eye"></i>
10,000
</span>
</div>
</header>
<p class="text-sm mb-1 last:mb-0">od wtorku do czwartku, 15:00 -
20:00</p>
<p class="text-sm mb-1 last:mb-0">Od wtorku do czwartku od 15:00 do 20:00 tylko w Radiu
Silesia wyjątkowy duet Michał Loskot i Marek Malarz „Biesiadny”
...</p>
</div>
</a>
<a href="./show-example.html" class="card group/card">
<div class="card-image-holder">
<img src="./src/images/shows/5.webp" class="card-image group-hover/card:scale-105"
alt="No i fajnie">
</div>
<div class="p-4 flex-auto">
<header class="card-header group-hover/card:text-sky-700">
<h3 class='text-lg font-medium '>
No i fajnie
</h3>
<div class="flex gap-x-2">
<span class="text-xs font-medium">
<i class="fa-solid fa-comment"></i>
1000
</span>
<span class="text-xs font-medium ">
<i class="fa-solid fa-eye"></i>
10,000
</span>
</div>
</header>
<p class="text-sm mb-1 last:mb-0">w piątek od 15:00 do 20:00</p>
<p class="text-sm mb-1 last:mb-0">Andrzej Miś i Marek Malarz „Biesiadny” zapraszają na
niesamowitą piątkową zabawę w Radiu Silesia na 96,2fm. ...</p>
</div>
</a>
<a href="./show-example.html" class="card group/card">
<div class="card-image-holder">
<img src="./src/images/shows/6.webp" class="card-image group-hover/card:scale-105"
alt=" Richtig fajny weekend">
</div>
<div class="p-4 flex-auto">
<header class="card-header group-hover/card:text-sky-700">
<h3 class='text-lg font-medium '>
Richtig fajny weekend
</h3>
<div class="flex gap-x-2">
<span class="text-xs font-medium">
<i class="fa-solid fa-comment"></i>
1000
</span>
<span class="text-xs font-medium ">
<i class="fa-solid fa-eye"></i>
10,000
</span>
</div>
</header>
<p class="text-sm mb-1 last:mb-0">w sobotę od 6:00 do 10:00</p>
<p class="text-sm mb-1 last:mb-0">AWstawanie w sobotę nie musi oznaczać sprzątania i
biegania po zakupy. Można przecież zacząć dzień od kawki ...</p>
</div>
</a>
<a href="./show-example.html" class="card group/card">
<div class="card-image-holder">
<img src="./src/images/shows/7.webp" class="card-image group-hover/card:scale-105"
alt=" Gotowi na weekend (babskie pogaduchy)">
</div>
<div class="p-4 flex-auto">
<header class="card-header group-hover/card:text-sky-700">
<h3 class='text-lg font-medium '>
Gotowi na weekend (babskie pogaduchy)
</h3>
<div class="flex gap-x-2">
<span class="text-xs font-medium">
<i class="fa-solid fa-comment"></i>
1000
</span>
<span class="text-xs font-medium ">
<i class="fa-solid fa-eye"></i>
10,000
</span>
</div>
</header>
<p class="text-sm mb-1 last:mb-0">w sobotę od 10:00 do 14:00</p>
<p class="text-sm mb-1 last:mb-0">Gotowi na weekend? Ania Włodarczyk sprawdzi czy
jesteście
Państwo gotowi na rozpoczęcie weekendu pełnego wrażeń? ...</p>
</div>
</a>
<a href="./show-example.html" class="card group/card">
<div class="card-image-holder">
<img src="./src/images/shows/8.webp" class="card-image group-hover/card:scale-105"
alt="Muzyczny koktajl Mariusza Kalagi">
</div>
<div class="p-4 flex-auto">
<header class="card-header group-hover/card:text-sky-700">
<h3 class='text-lg font-medium '>
Muzyczny koktajl Mariusza Kalagi
</h3>
<div class="flex gap-x-2">
<span class="text-xs font-medium">
<i class="fa-solid fa-comment"></i>
1000
</span>
<span class="text-xs font-medium ">
<i class="fa-solid fa-eye"></i>
10,000
</span>
</div>
</header>
<p class="text-sm mb-1 last:mb-0">w sobotę od 14:00 do 15:00</p>
<p class="text-sm mb-1 last:mb-0">Mówisz koktajl masz na myśli mieszankę płynów,
dźwięków,
stylów, narodowości, poglądów, upodobań … ...</p>
</div>
</a>
<a href="./show-example.html" class="card group/card">
<div class="card-image-holder">
<img src="./src/images/shows/9.webp" class="card-image group-hover/card:scale-105"
alt="Sobotni fajer">
</div>
<div class="p-4 flex-auto">
<header class="card-header group-hover/card:text-sky-700">
<h3 class='text-lg font-medium '>
Sobotni fajer
</h3>
<div class="flex gap-x-2">
<span class="text-xs font-medium">
<i class="fa-solid fa-comment"></i>
1000
</span>
<span class="text-xs font-medium ">
<i class="fa-solid fa-eye"></i>
10,000
</span>
</div>
</header>
<p class="text-sm mb-1 last:mb-0">w sobotę od 15:00 do 20:00</p>
<p class="text-sm mb-1 last:mb-0">Adam Stiborski zaprasza na program Sobotni Fajer w
każdą
sobotę od 15:00 do 20:00. To Wy ...</p>
</div>
</a>
<a href="./show-example.html" class="card group/card">
<div class="card-image-holder">
<img src="./src/images/shows/10.webp" class="card-image group-hover/card:scale-105"
alt=" Przebojowe śniadanie Silesia">
</div>
<div class="p-4 flex-auto">
<header class="card-header group-hover/card:text-sky-700">
<h3 class='text-lg font-medium '>
Przebojowe śniadanie Silesia
</h3>
<div class="flex gap-x-2">
<span class="text-xs font-medium">
<i class="fa-solid fa-comment"></i>
1000
</span>
<span class="text-xs font-medium ">
<i class="fa-solid fa-eye"></i>
10,000
</span>
</div>
</header>
<p class="text-sm mb-1 last:mb-0">w niedzielę od 6:00 do 11:00</p>
<p class="text-sm mb-1 last:mb-0">DJ „Nieśpiący Miś” czyli jedyny i niepowtarzalny Wasz
Andrzej Miś zaprasza na muzyczną pobudkę. ...</p>
</div>
</a>
<a href="./show-example.html" class="card group/card">
<div class="card-image-holder">
<img src="./src/images/shows/11.webp" class="card-image group-hover/card:scale-105"
alt=" Przebojowe śniadanie Silesia">
</div>
<div class="p-4 flex-auto">
<header class="card-header group-hover/card:text-sky-700">
<h3 class='text-lg font-medium '>
Warzynie w starym radioku z Klaudią i Kasią Chwołka
</h3>
<div class="flex gap-x-2">
<span class="text-xs font-medium">
<i class="fa-solid fa-comment"></i>
1000
</span>
<span class="text-xs font-medium ">
<i class="fa-solid fa-eye"></i>
10,000
</span>
</div>
</header>
<p class="text-sm mb-1 last:mb-0">w niedzielę od 11:00 do 12:00</p>
<p class="text-sm mb-1 last:mb-0">Autorsko audycja Claudii i Kasi Chwołka w Radiu
Silesia
pod tytułem „Warzynie w starym radioku”. Historie, ...</p>
</div>
</a>
<a href="./show-example.html" class="card group/card">
<div class="card-image-holder">
<img src="./src/images/shows/12.webp" class="card-image group-hover/card:scale-105"
alt="Heimatmelodie">
</div>
<div class="p-4 flex-auto">
<header class="card-header group-hover/card:text-sky-700">
<h3 class='text-lg font-medium '>
Heimatmelodie
</h3>
<div class="flex gap-x-2">
<span class="text-xs font-medium">
<i class="fa-solid fa-comment"></i>
1000
</span>
<span class="text-xs font-medium ">
<i class="fa-solid fa-eye"></i>
10,000
</span>
</div>
</header>
<p class="text-sm mb-1 last:mb-0">w niedzielę od 12:00 do 14:00</p>
<p class="text-sm mb-1 last:mb-0">Piotr Feszter zaprasza Was na Heimatmelodie. W audycji
Piotr zaprezentuje znanych i lubianych przez Państwa ...</p>
</div>
</a>
<a href="./show-example.html" class="card group/card">
<div class="card-image-holder">
<img src="./src/images/shows/13.webp" class="card-image group-hover/card:scale-105"
alt="Muzyczne nowości radia Silesia">
</div>
<div class="p-4 flex-auto">
<header class="card-header group-hover/card:text-sky-700">
<h3 class='text-lg font-medium'>
Muzyczne nowości radia Silesia
</h3>
<div class="flex gap-x-2">
<span class="text-xs font-medium">
<i class="fa-solid fa-comment"></i>
1000
</span>
<span class="text-xs font-medium ">
<i class="fa-solid fa-eye"></i>
10,000
</span>
</div>
</header>
<p class="text-sm mb-1 last:mb-0">w niedzielę od 14:00 do 15:00</p>
<p class="text-sm mb-1 last:mb-0">Zaprasza Adam Stiborski.</p>
</div>
</a>
<a href="./show-example.html" class="card group/card">
<div class="card-image-holder">
<img src="./src/images/shows/14.webp" class="card-image group-hover/card:scale-105" alt="
Muzyczne zolyty radia Silesia">
</div>
<div class="p-4 flex-auto">
<header class="card-header group-hover/card:text-sky-700">
<h3 class='text-lg font-medium'>
Muzyczne zolyty radia Silesia
</h3>
<div class="flex gap-x-2">
<span class="text-xs font-medium">
<i class="fa-solid fa-comment"></i>
1000
</span>
<span class="text-xs font-medium ">
<i class="fa-solid fa-eye"></i>
10,000
</span>
</div>
</header>
<p class="text-sm mb-1 last:mb-0">w niedzielę od 15:00 do 20:00</p>
<p class="text-sm mb-1 last:mb-0">Program dla wszystkich, którzy szukają swojej drugiej
połówki do wyjścia do teatru, kina, na koncert czy też ...</p>
</div>
</a>
<a href="./show-example.html" class="card group/card">
<div class="card-image-holder">
<img src="./src/images/shows/15.webp" class="card-image group-hover/card:scale-105" alt="
Koncert życzeń">
</div>
<div class="p-4 flex-auto">
<header class="card-header group-hover/card:text-sky-700">
<h3 class='text-lg font-medium'>
Koncert życzeń
</h3>
<div class="flex gap-x-2">
<span class="text-xs font-medium">
<i class="fa-solid fa-comment"></i>
1000
</span>
<span class="text-xs font-medium ">
<i class="fa-solid fa-eye"></i>
10,000
</span>
</div>
</header>
<p class="text-sm mb-1 last:mb-0">codziennie od 17:30 do 18:00</p>
<p class="text-sm mb-1 last:mb-0">Serdecznie zapraszamy Słuchaczy do składania – za
pośrednictwem Radia Silesia – życzeń i gratulacji tym, ...</p>
</div>
</a>
<a href="./show-example.html" class="card group/card">
<div class="card-image-holder">
<img src="./src/images/shows/16.webp" class="card-image group-hover/card:scale-105" alt="
Powroty">
</div>
<div class="p-4 flex-auto">
<header class="card-header group-hover/card:text-sky-700">
<h3 class='text-lg font-medium'>
Powroty
</h3>
<div class="flex gap-x-2">
<span class="text-xs font-medium">
<i class="fa-solid fa-comment"></i>
1000
</span>
<span class="text-xs font-medium ">
<i class="fa-solid fa-eye"></i>
10,000
</span>
</div>
</header>
<p class="text-sm mb-1 last:mb-0">w czwartek od 21:00 do 22:00</p>
<p class="text-sm mb-1 last:mb-0">Powroty to audycja poświęcona problemom uzależnień.
Uzależnienie to nie bilet w jedną stronę. Wróć do tego co ...</p>
</div>
</a>
</div>
</section>
</div>
<footer class="w-full pt-10 pb-5 bg-sky-50 border-t border-sky-500">
<div class="container">
<!-- Grid -->
<div class="grid grid-cols-2 sm:grid-cols-3 lg:grid-cols-4 gap-6">
<div class="col-span-full lg:col-span-1">
<a class="text-xl md:text-xl text-sky-700 font-semibold " href="#"
aria-label="Silesia.fm">Silesia.fm</a>
<p class="text-sky-800 mt-2 text-lg">Fajnie gramy!</p>
</div>
<!-- End Col -->
<div class="col-span-1">
<h3 class="font-semibold text-sky-700">Przydatne linki</h4>
<div class="mt-3 grid space-y-2 md:space-y-3">
<a class="text-sky-700 hover:text-sky-900 transition duration-150"
href="./shows.html" aria-current="page">Audycje</a>
<a class="text-sky-700 hover:text-sky-900 transition duration-150"
href="./podcasts.html">Podkasty</a>
<a class="text-sky-700 hover:text-sky-900 transition duration-150"
href="./schedule.html">Ramówka</a>
<a class="text-sky-700 hover:text-sky-900 transition duration-150"
href="./index.html#events">Wydarzenia</a>
</div>
</div>
<!-- End Col -->
<div class="col-span-1">
<h3 class="font-semibold text-sky-700">Informacje</h4>
<div class="mt-3 grid space-y-2 md:space-y-3">
<a class="text-sky-700 hover:text-sky-900 transition duration-150" href="#"
aria-current="page">O
nas</a>
<a class="text-sky-700 hover:text-sky-900 transition duration-150"
href="#">Reklama</a>
<a class="text-sky-700 hover:text-sky-900 transition duration-150" href="#">Praca
<span
class="inline ms-1 text-xs bg-sky-700 text-white py-1 px-2 rounded-lg">Zatrudniamy</span></a>
<a class="text-sky-700 hover:text-sky-900 transition duration-150"
href="#">Kontakt</a>
</div>
</div>
<!-- End Col -->
<div class="col-span-1">
<h3 class="font-semibold text-sky-700">Regulaminy</h4>
<div class="mt-3 grid space-y-2 md:space-y-3">
<a class="text-sky-700 hover:text-sky-900 transition duration-150"
href="#">Konkursy</a>
<a class="text-sky-700 hover:text-sky-900 transition duration-150"
href="#">Samoregulacja</a>
</div>
</div>
<!-- End Col -->
<div class="col-span-full">
<h3 class="font-semibold text-sky-700">Bądź na bieżąco</h4>
<form>
<div
class="mt-4 flex flex-col items-start sm:items-center gap-2 sm:flex-row sm:gap-3 rounded-lg">
<div class="w-full">
<label for="hero-input" class="sr-only">Subskrybuj nasz newsletter</label>
<input type="text" id="hero-input" name="hero-input" class="input"
placeholder="Email">
</div>
<a class="button" href="#">
Subskrybuj
</a>
</div>
<p class="mt-3 text-sm text-sky-700">
Otrzymuj informacje o najnowszych wydarzeniach i pokazach. Bez spamu
</p>
</form>
</div>
<!-- End Col -->
</div>
<!-- End Grid -->
<div class="mt-5 grid gap-y-2 sm:gap-y-0 sm:flex sm:justify-between sm:items-center">