Files
grechuta.pagedev.pl/wp-content/themes/hello-elementor/template-parts/frame-album-sections.php
Roman Pyrih e906d7af4a Save
2025-05-21 12:08:25 +02:00

726 lines
28 KiB
PHP

<section class="box box-1">
<?php if(get_field("albums_arr")[0]['show_title_img']) : ?>
<img class="title_img" src="<?= get_field("albums_arr")[0]['title_img']; ?>" alt="">
<?php else : ?>
<h2><?= get_field("albums_arr")[0]['title'] ?></h2>
<?php endif; ?>
<?php if(get_field("albums_arr")[0]['show_subtitle_img']) : ?>
<img class="subtitle_img" src="<?= get_field("albums_arr")[0]['subtitle_img']; ?>" alt="">
<?php else : ?>
<h3><?= get_field("albums_arr")[0]['subtitle'] ?></h3>
<?php endif; ?>
<?= get_field("albums_arr")[0]['text'] ?>
<ul class="actions">
<?php foreach (get_field("albums_arr")[0]['albums_list'] as $key => $value) : ?>
<li class="song song-<?= $key; ?>" song="<?= $value['album_song']; ?>"><?= $value['album_name']; ?>
<img src="/wp-content/uploads/2024/04/volume.png" alt="">
</li>
<?php endforeach; ?>
<?php if(get_field("albums_arr")[0]['add_text'] == 1): ?>
<li class="song text">
Teksty
<img src="/wp-content/uploads/2024/04/txt.png" alt="">
<div class="text-data">
<?= get_field("albums_arr")[0]['melody_text'] ?>
</div>
</li>
<?php endif; ?>
</ul>
<div class="img-box img-box-helping">
<a href="<?= get_field("albums_arr")[0]['album_1_big']; ?>" data-fancybox>
<img class="album" src="<?= get_field("albums_arr")[0]['album_1']; ?>" alt="">
</a>
<img class="album-record" src="/wp-content/uploads/2024/04/record.png" alt="">
<div class="helping">
<div class="step step-2">
<div class="step-wrapper">
<div class="step-text">
<span>Kliknij w płyte, aby powiększyć okładke</span>
</div>
<div class="step-icon">
<img src="/wp-content/uploads/2025/05/Hand-Pointer-Icon.svg" alt="">
</div>
</div>
</div>
</div>
</div>
</section>
<section class="box box-2">
<?php if(get_field("albums_arr")[1]['show_title_img']) : ?>
<img class="title_img" src="<?= get_field("albums_arr")[1]['title_img']; ?>" alt="">
<?php else : ?>
<h2><?= get_field("albums_arr")[1]['title'] ?></h2>
<?php endif; ?>
<?php if(get_field("albums_arr")[1]['show_subtitle_img']) : ?>
<img class="subtitle_img" src="<?= get_field("albums_arr")[1]['subtitle_img']; ?>" alt="">
<?php else : ?>
<h3><?= get_field("albums_arr")[1]['subtitle'] ?></h3>
<?php endif; ?>
<?= get_field("albums_arr")[1]['text'] ?>
<ul class="actions">
<?php foreach (get_field("albums_arr")[1]['albums_list'] as $key => $value) : ?>
<li class="song song-<?= $key; ?>" song="<?= $value['album_song']; ?>"><?= $value['album_name']; ?>
<img src="/wp-content/uploads/2024/04/volume.png" alt="">
</li>
<?php endforeach; ?>
<?php if(get_field("albums_arr")[1]['add_text'] == 1): ?>
<li class="song text">
Teksty
<img src="/wp-content/uploads/2024/04/txt.png" alt="">
<div class="text-data">
<?= get_field("albums_arr")[1]['melody_text'] ?>
</div>
</li>
<?php endif; ?>
</ul>
<div class="img-box">
<a href="<?= get_field("albums_arr")[1]['album_1_big']; ?>" data-fancybox>
<img class="album" src="<?= get_field("albums_arr")[1]['album_1']; ?>" alt="">
</a>
<img class="album-record" src="/wp-content/uploads/2024/04/record.png" alt="">
</div>
</section>
<section class="box box-3">
<?php if(get_field("albums_arr")[2]['show_title_img']) : ?>
<img class="title_img" src="<?= get_field("albums_arr")[2]['title_img']; ?>" alt="">
<?php else : ?>
<h2><?= get_field("albums_arr")[2]['title'] ?></h2>
<?php endif; ?>
<?php if(get_field("albums_arr")[2]['show_subtitle_img']) : ?>
<img class="subtitle_img" src="<?= get_field("albums_arr")[2]['subtitle_img']; ?>" alt="">
<?php else : ?>
<h3><?= get_field("albums_arr")[2]['subtitle'] ?></h3>
<?php endif; ?>
<?= get_field("albums_arr")[2]['text'] ?>
<ul class="actions">
<?php foreach (get_field("albums_arr")[2]['albums_list'] as $key => $value) : ?>
<li class="song song-<?= $key; ?>" song="<?= $value['album_song']; ?>"><?= $value['album_name']; ?>
<img src="/wp-content/uploads/2024/04/volume.png" alt="">
</li>
<?php endforeach; ?>
<?php if(get_field("albums_arr")[2]['add_text'] == 1): ?>
<li class="song text">
Teksty
<img src="/wp-content/uploads/2024/04/txt.png" alt="">
<div class="text-data">
<?= get_field("albums_arr")[2]['melody_text'] ?>
</div>
</li>
<?php endif; ?>
</ul>
<div class="img-box">
<a href="<?= get_field("albums_arr")[2]['album_1_big']; ?>" data-fancybox>
<img class="album" src="<?= get_field("albums_arr")[2]['album_1']; ?>" alt="">
</a>
<img class="album-record" src="/wp-content/uploads/2024/04/record.png" alt="">
</div>
</section>
<section class="box box-4">
<?php if(get_field("albums_arr")[3]['show_title_img']) : ?>
<img class="title_img" src="<?= get_field("albums_arr")[3]['title_img']; ?>" alt="">
<?php else : ?>
<h2><?= get_field("albums_arr")[3]['title'] ?></h2>
<?php endif; ?>
<?php if(get_field("albums_arr")[3]['show_subtitle_img']) : ?>
<img class="subtitle_img" src="<?= get_field("albums_arr")[3]['subtitle_img']; ?>" alt="">
<?php else : ?>
<h3><?= get_field("albums_arr")[3]['subtitle'] ?></h3>
<?php endif; ?>
<?= get_field("albums_arr")[3]['text'] ?>
<ul class="actions">
<?php foreach (get_field("albums_arr")[3]['albums_list'] as $key => $value) : ?>
<?php if($key == 1) : ?>
<li class="song-txt">Suita „Spotkania w czasie” z filmu Jastrun:</li>
<?php endif; ?>
<li class="song song-<?= $key; ?>" song="<?= $value['album_song']; ?>"><?= $value['album_name']; ?>
<img src="/wp-content/uploads/2024/04/volume.png" alt="">
</li>
<?php endforeach; ?>
<?php if(get_field("albums_arr")[3]['add_text'] == 1): ?>
<li class="song text">
Teksty
<img src="/wp-content/uploads/2024/04/txt.png" alt="">
<div class="text-data">
<?= get_field("albums_arr")[3]['melody_text'] ?>
</div>
</li>
<?php endif; ?>
</ul>
<div class="img-box">
<a href="<?= get_field("albums_arr")[3]['album_1_big']; ?>" data-fancybox>
<img class="album" src="<?= get_field("albums_arr")[3]['album_1']; ?>" alt="">
</a>
<img class="album-record" src="/wp-content/uploads/2024/04/record.png" alt="">
</div>
</section>
<section class="box box-5">
<?php if(get_field("albums_arr")[4]['show_title_img']) : ?>
<img class="title_img" src="<?= get_field("albums_arr")[4]['title_img']; ?>" alt="">
<?php else : ?>
<h2><?= get_field("albums_arr")[4]['title'] ?></h2>
<?php endif; ?>
<?php if(get_field("albums_arr")[4]['show_subtitle_img']) : ?>
<img class="subtitle_img" src="<?= get_field("albums_arr")[4]['subtitle_img']; ?>" alt="">
<?php else : ?>
<h3><?= get_field("albums_arr")[4]['subtitle'] ?></h3>
<?php endif; ?>
<?= get_field("albums_arr")[4]['text'] ?>
<ul class="actions actions-1">
<?php foreach (get_field("albums_arr")[4]['albums_list'] as $key => $value) : ?>
<?php if($key <= 5) : ?>
<li class="song song-<?= $key; ?>" song="<?= $value['album_song']; ?>"><?= $value['album_name']; ?>
<img src="/wp-content/uploads/2024/04/volume.png" alt="">
</li>
<?php endif; ?>
<?php endforeach; ?>
<?php if(get_field("albums_arr")[4]['add_text'] == 1): ?>
<li class="song text">
Teksty
<img src="/wp-content/uploads/2024/04/txt.png" alt="">
<div class="text-data">
<?= get_field("albums_arr")[4]['melody_text'] ?>
</div>
</li>
<?php endif; ?>
</ul>
<ul class="actions actions-2">
<?php foreach (get_field("albums_arr")[4]['albums_list'] as $key => $value) : ?>
<?php if($key > 5) : ?>
<li class="song song-<?= $key; ?>" song="<?= $value['album_song']; ?>"><?= $value['album_name']; ?>
<img src="/wp-content/uploads/2024/04/volume.png" alt="">
</li>
<?php endif; ?>
<?php endforeach; ?>
</ul>
<div class="img-box">
<a href="<?= get_field("albums_arr")[4]['album_1_big']; ?>" data-fancybox>
<img class="album" src="<?= get_field("albums_arr")[4]['album_1']; ?>" alt="">
</a>
<img class="album-record" src="/wp-content/uploads/2024/04/record.png" alt="">
</div>
</section>
<section class="box box-6">
<?php if(get_field("albums_arr")[5]['show_title_img']) : ?>
<img class="title_img" src="<?= get_field("albums_arr")[5]['title_img']; ?>" alt="">
<?php else : ?>
<h2><?= get_field("albums_arr")[5]['title'] ?></h2>
<?php endif; ?>
<?php if(get_field("albums_arr")[5]['show_subtitle_img']) : ?>
<img class="subtitle_img" src="<?= get_field("albums_arr")[5]['subtitle_img']; ?>" alt="">
<?php else : ?>
<h3><?= get_field("albums_arr")[5]['subtitle'] ?></h3>
<?php endif; ?>
<?= get_field("albums_arr")[5]['text'] ?>
<?php if(get_field("albums_arr")[5]['add_text'] == 1): ?>
<div class="song text">
Teksty
<img src="/wp-content/uploads/2024/04/txt.png" alt="">
<div class="text-data">
<?= get_field("albums_arr")[5]['melody_text'] ?>
</div>
</div>
<?php endif; ?>
<ul class="actions">
<?php foreach (get_field("albums_arr")[5]['albums_list'] as $key => $value) : ?>
<li class="song song-<?= $key; ?>" song="<?= $value['album_song']; ?>"><?= $value['album_name']; ?>
<img src="/wp-content/uploads/2024/04/volume.png" alt="">
</li>
<?php endforeach; ?>
</ul>
<div class="img-box">
<a href="<?= get_field("albums_arr")[5]['album_1_big']; ?>" data-fancybox>
<img class="album" src="<?= get_field("albums_arr")[5]['album_1']; ?>" alt="">
</a>
<img class="album-record" src="/wp-content/uploads/2024/04/record.png" alt="">
</div>
</section>
<section class="box box-7">
<?php if(get_field("albums_arr")[6]['show_title_img']) : ?>
<img class="title_img" src="<?= get_field("albums_arr")[6]['title_img']; ?>" alt="">
<?php else : ?>
<h2><?= get_field("albums_arr")[6]['title'] ?></h2>
<?php endif; ?>
<?php if(get_field("albums_arr")[6]['show_subtitle_img']) : ?>
<img class="subtitle_img" src="<?= get_field("albums_arr")[6]['subtitle_img']; ?>" alt="">
<?php else : ?>
<h3><?= get_field("albums_arr")[6]['subtitle'] ?></h3>
<?php endif; ?>
<?= get_field("albums_arr")[6]['text'] ?>
<ul class="actions actions-1">
<?php foreach (get_field("albums_arr")[6]['albums_list'] as $key => $value) : ?>
<?php if($key <= 5) : ?>
<li class="song song-<?= $key; ?>" song="<?= $value['album_song']; ?>"><?= $value['album_name']; ?>
<img src="/wp-content/uploads/2024/04/volume.png" alt="">
</li>
<?php endif; ?>
<?php endforeach; ?>
</ul>
<ul class="actions actions-2">
<?php foreach (get_field("albums_arr")[6]['albums_list'] as $key => $value) : ?>
<?php if($key > 5) : ?>
<li class="song song-<?= $key; ?>" song="<?= $value['album_song']; ?>"><?= $value['album_name']; ?>
<img src="/wp-content/uploads/2024/04/volume.png" alt="">
</li>
<?php endif; ?>
<?php endforeach; ?>
<?php if(get_field("albums_arr")[6]['add_text'] == 1): ?>
<li class="song text">
Teksty
<img src="/wp-content/uploads/2024/04/txt.png" alt="">
<div class="text-data">
<?= get_field("albums_arr")[6]['melody_text'] ?>
</div>
</li>
<?php endif; ?>
</ul>
<div class="img-box">
<a href="<?= get_field("albums_arr")[6]['album_1_big']; ?>" data-fancybox>
<img class="album" src="<?= get_field("albums_arr")[6]['album_1']; ?>" alt="">
</a>
<img class="album-record" src="/wp-content/uploads/2024/04/record.png" alt="">
</div>
</section>
<section class="box box-8">
<?php if(get_field("albums_arr")[7]['show_title_img']) : ?>
<img class="title_img" src="<?= get_field("albums_arr")[7]['title_img']; ?>" alt="">
<?php else : ?>
<h2><?= get_field("albums_arr")[7]['title'] ?></h2>
<?php endif; ?>
<?php if(get_field("albums_arr")[7]['show_subtitle_img']) : ?>
<img class="subtitle_img" src="<?= get_field("albums_arr")[7]['subtitle_img']; ?>" alt="">
<?php else : ?>
<h3><?= get_field("albums_arr")[7]['subtitle'] ?></h3>
<?php endif; ?>
<?= get_field("albums_arr")[7]['text'] ?>
<ul class="actions">
<?php foreach (get_field("albums_arr")[7]['albums_list'] as $key => $value) : ?>
<li class="song song-<?= $key; ?>" song="<?= $value['album_song']; ?>"><?= $value['album_name']; ?>
<img src="/wp-content/uploads/2024/04/volume.png" alt="">
</li>
<?php endforeach; ?>
<?php if(get_field("albums_arr")[7]['add_text'] == 1): ?>
<li class="song text">
Teksty
<img src="/wp-content/uploads/2024/04/txt.png" alt="">
<div class="text-data">
<?= get_field("albums_arr")[7]['melody_text'] ?>
</div>
</li>
<?php endif; ?>
</ul>
<div class="img-box">
<a href="<?= get_field("albums_arr")[7]['album_1_big']; ?>" data-fancybox>
<img class="album" src="<?= get_field("albums_arr")[7]['album_1']; ?>" alt="">
</a>
<img class="album-record" src="/wp-content/uploads/2024/04/record.png" alt="">
</div>
</section>
<section class="box box-9">
<?php if(get_field("albums_arr")[8]['show_title_img']) : ?>
<img class="title_img" src="<?= get_field("albums_arr")[8]['title_img']; ?>" alt="">
<?php else : ?>
<h2><?= get_field("albums_arr")[8]['title'] ?></h2>
<?php endif; ?>
<?php if(get_field("albums_arr")[8]['show_subtitle_img']) : ?>
<img class="subtitle_img" src="<?= get_field("albums_arr")[8]['subtitle_img']; ?>" alt="">
<?php else : ?>
<h3><?= get_field("albums_arr")[8]['subtitle'] ?></h3>
<?php endif; ?>
<?= get_field("albums_arr")[8]['text'] ?>
<ul class="actions">
<?php foreach (get_field("albums_arr")[8]['albums_list'] as $key => $value) : ?>
<li class="song song-<?= $key; ?>" song="<?= $value['album_song']; ?>"><?= $value['album_name']; ?>
<img src="/wp-content/uploads/2024/04/volume.png" alt="">
</li>
<?php endforeach; ?>
<?php if(get_field("albums_arr")[8]['add_text'] == 1): ?>
<li class="song text">
Teksty
<img src="/wp-content/uploads/2024/04/txt.png" alt="">
<div class="text-data">
<?= get_field("albums_arr")[8]['melody_text'] ?>
</div>
</li>
<?php endif; ?>
</ul>
<div class="img-box">
<a href="<?= get_field("albums_arr")[8]['album_1_big']; ?>" data-fancybox>
<img class="album" src="<?= get_field("albums_arr")[8]['album_1']; ?>" alt="">
</a>
<img class="album-record" src="/wp-content/uploads/2024/04/record.png" alt="">
</div>
</section>
<section class="box box-10">
<?php if(get_field("albums_arr")[9]['show_title_img']) : ?>
<img class="title_img" src="<?= get_field("albums_arr")[9]['title_img']; ?>" alt="">
<?php else : ?>
<h2><?= get_field("albums_arr")[9]['title'] ?></h2>
<?php endif; ?>
<?php if(get_field("albums_arr")[9]['show_subtitle_img']) : ?>
<img class="subtitle_img" src="<?= get_field("albums_arr")[9]['subtitle_img']; ?>" alt="">
<?php else : ?>
<h3><?= get_field("albums_arr")[9]['subtitle'] ?></h3>
<?php endif; ?>
<?= get_field("albums_arr")[9]['text'] ?>
<ul class="actions">
<?php foreach (get_field("albums_arr")[9]['albums_list'] as $key => $value) : ?>
<li class="song song-<?= $key; ?>" song="<?= $value['album_song']; ?>"><?= $value['album_name']; ?>
<img src="/wp-content/uploads/2024/04/volume.png" alt="">
</li>
<?php endforeach; ?>
<?php if(get_field("albums_arr")[9]['add_text'] == 1): ?>
<li class="song text">
Teksty
<img src="/wp-content/uploads/2024/04/txt.png" alt="">
<div class="text-data">
<?= get_field("albums_arr")[9]['melody_text'] ?>
</div>
</li>
<?php endif; ?>
</ul>
<div class="img-box">
<a href="<?= get_field("albums_arr")[9]['album_1_big']; ?>" data-fancybox>
<img class="album" src="<?= get_field("albums_arr")[9]['album_1']; ?>" alt="">
</a>
<img class="album-record" src="/wp-content/uploads/2024/04/record.png" alt="">
</div>
</section>
<section class="box box-11">
<?php if(get_field("albums_arr")[10]['show_title_img']) : ?>
<img class="title_img" src="<?= get_field("albums_arr")[10]['title_img']; ?>" alt="">
<?php else : ?>
<h2><?= get_field("albums_arr")[10]['title'] ?></h2>
<?php endif; ?>
<?php if(get_field("albums_arr")[10]['show_subtitle_img']) : ?>
<img class="subtitle_img" src="<?= get_field("albums_arr")[10]['subtitle_img']; ?>" alt="">
<?php else : ?>
<h3><?= get_field("albums_arr")[10]['subtitle'] ?></h3>
<?php endif; ?>
<?= get_field("albums_arr")[10]['text'] ?>
<ul class="actions">
<?php foreach (get_field("albums_arr")[10]['albums_list'] as $key => $value) : ?>
<li class="song song-<?= $key; ?>" song="<?= $value['album_song']; ?>"><?= $value['album_name']; ?>
<img src="/wp-content/uploads/2024/04/volume.png" alt="">
</li>
<?php endforeach; ?>
<?php if(get_field("albums_arr")[10]['add_text'] == 1): ?>
<li class="song text">
Teksty
<img src="/wp-content/uploads/2024/04/txt.png" alt="">
<div class="text-data">
<?= get_field("albums_arr")[10]['melody_text'] ?>
</div>
</li>
<?php endif; ?>
</ul>
<div class="img-box">
<a href="<?= get_field("albums_arr")[10]['album_1_big']; ?>" data-fancybox>
<img class="album" src="<?= get_field("albums_arr")[10]['album_1']; ?>" alt="">
</a>
<img class="album-record" src="/wp-content/uploads/2024/04/record.png" alt="">
</div>
</section>
<section class="box box-12">
<?php if(get_field("albums_arr")[11]['show_title_img']) : ?>
<img class="title_img" src="<?= get_field("albums_arr")[11]['title_img']; ?>" alt="">
<?php else : ?>
<h2><?= get_field("albums_arr")[11]['title'] ?></h2>
<?php endif; ?>
<?php if(get_field("albums_arr")[11]['show_subtitle_img']) : ?>
<img class="subtitle_img" src="<?= get_field("albums_arr")[11]['subtitle_img']; ?>" alt="">
<?php else : ?>
<h3><?= get_field("albums_arr")[11]['subtitle'] ?></h3>
<?php endif; ?>
<?= get_field("albums_arr")[11]['text'] ?>
<ul class="actions">
<?php foreach (get_field("albums_arr")[11]['albums_list'] as $key => $value) : ?>
<li class="song song-<?= $key; ?>" song="<?= $value['album_song']; ?>"><?= $value['album_name']; ?>
<img src="/wp-content/uploads/2024/04/volume.png" alt="">
</li>
<?php endforeach; ?>
<?php if(get_field("albums_arr")[11]['add_text'] == 1): ?>
<li class="song text">
Teksty
<img src="/wp-content/uploads/2024/04/txt.png" alt="">
<div class="text-data">
<?= get_field("albums_arr")[11]['melody_text'] ?>
</div>
</li>
<?php endif; ?>
</ul>
<div class="img-box">
<a href="<?= get_field("albums_arr")[11]['album_1_big']; ?>" data-fancybox>
<img class="album" src="<?= get_field("albums_arr")[11]['album_1']; ?>" alt="">
</a>
<img class="album-record" src="/wp-content/uploads/2024/04/record.png" alt="">
</div>
</section>
<section class="box box-13">
<?php if(get_field("albums_arr")[12]['show_title_img']) : ?>
<img class="title_img" src="<?= get_field("albums_arr")[12]['title_img']; ?>" alt="">
<?php else : ?>
<h2><?= get_field("albums_arr")[12]['title'] ?></h2>
<?php endif; ?>
<?php if(get_field("albums_arr")[12]['show_subtitle_img']) : ?>
<img class="subtitle_img" src="<?= get_field("albums_arr")[12]['subtitle_img']; ?>" alt="">
<?php else : ?>
<h3><?= get_field("albums_arr")[12]['subtitle'] ?></h3>
<?php endif; ?>
<?= get_field("albums_arr")[12]['text'] ?>
<ul class="actions">
<?php foreach (get_field("albums_arr")[12]['albums_list'] as $key => $value) : ?>
<li class="song song-<?= $key; ?>" song="<?= $value['album_song']; ?>"><?= $value['album_name']; ?>
<img src="/wp-content/uploads/2024/04/volume.png" alt="">
</li>
<?php endforeach; ?>
<?php if(get_field("albums_arr")[12]['add_text'] == 1): ?>
<li class="song text">
Teksty
<img src="/wp-content/uploads/2024/04/txt.png" alt="">
<div class="text-data">
<?= get_field("albums_arr")[12]['melody_text'] ?>
</div>
</li>
<?php endif; ?>
</ul>
<div class="img-box">
<a href="<?= get_field("albums_arr")[12]['album_1_big']; ?>" data-fancybox>
<img class="album" src="<?= get_field("albums_arr")[12]['album_1']; ?>" alt="">
</a>
<img class="album-record" src="/wp-content/uploads/2024/04/record.png" alt="">
</div>
</section>
<section class="box box-14">
<?php if(get_field("albums_arr")[13]['show_title_img']) : ?>
<img class="title_img" src="<?= get_field("albums_arr")[13]['title_img']; ?>" alt="">
<?php else : ?>
<h2><?= get_field("albums_arr")[13]['title'] ?></h2>
<?php endif; ?>
<?php if(get_field("albums_arr")[13]['show_subtitle_img']) : ?>
<img class="subtitle_img" src="<?= get_field("albums_arr")[13]['subtitle_img']; ?>" alt="">
<?php else : ?>
<h3><?= get_field("albums_arr")[13]['subtitle'] ?></h3>
<?php endif; ?>
<?= get_field("albums_arr")[13]['text'] ?>
<ul class="actions">
<?php foreach (get_field("albums_arr")[13]['albums_list'] as $key => $value) : ?>
<li class="song song-<?= $key; ?>" song="<?= $value['album_song']; ?>"><?= $value['album_name']; ?>
<img src="/wp-content/uploads/2024/04/volume.png" alt="">
</li>
<?php endforeach; ?>
<?php if(get_field("albums_arr")[13]['add_text'] == 1): ?>
<li class="song text">
Teksty
<img src="/wp-content/uploads/2024/04/txt.png" alt="">
<div class="text-data">
<?= get_field("albums_arr")[13]['melody_text'] ?>
</div>
</li>
<?php endif; ?>
</ul>
<div class="img-box">
<a href="<?= get_field("albums_arr")[13]['album_1_big']; ?>" data-fancybox>
<img class="album" src="<?= get_field("albums_arr")[13]['album_1']; ?>" alt="">
</a>
<img class="album-record" src="/wp-content/uploads/2024/04/record.png" alt="">
</div>
</section>
<section class="box box-15">
<?php if(get_field("albums_arr")[14]['show_title_img']) : ?>
<img class="title_img" src="<?= get_field("albums_arr")[14]['title_img']; ?>" alt="">
<?php else : ?>
<h2><?= get_field("albums_arr")[14]['title'] ?></h2>
<?php endif; ?>
<?php if(get_field("albums_arr")[14]['show_subtitle_img']) : ?>
<img class="subtitle_img" src="<?= get_field("albums_arr")[14]['subtitle_img']; ?>" alt="">
<?php else : ?>
<h3><?= get_field("albums_arr")[14]['subtitle'] ?></h3>
<?php endif; ?>
<?= get_field("albums_arr")[14]['text'] ?>
<ul class="actions">
<?php foreach (get_field("albums_arr")[14]['albums_list'] as $key => $value) : ?>
<li class="song song-<?= $key; ?>" song="<?= $value['album_song']; ?>"><?= $value['album_name']; ?>
<img src="/wp-content/uploads/2024/04/volume.png" alt="">
</li>
<?php endforeach; ?>
<?php if(get_field("albums_arr")[14]['add_text'] == 1): ?>
<li class="song text">
Teksty
<img src="/wp-content/uploads/2024/04/txt.png" alt="">
<div class="text-data">
<?= get_field("albums_arr")[14]['melody_text'] ?>
</div>
</li>
<?php endif; ?>
</ul>
<div class="img-box">
<a href="<?= get_field("albums_arr")[14]['album_1_big']; ?>" data-fancybox>
<img class="album" src="<?= get_field("albums_arr")[14]['album_1']; ?>" alt="">
</a>
<img class="album-record" src="/wp-content/uploads/2024/04/record.png" alt="">
</div>
</section>
<section class="box box-16">
<?php if(get_field("albums_arr")[15]['show_title_img']) : ?>
<img class="title_img" src="<?= get_field("albums_arr")[15]['title_img']; ?>" alt="">
<?php else : ?>
<h2><?= get_field("albums_arr")[15]['title'] ?></h2>
<?php endif; ?>
<?php if(get_field("albums_arr")[15]['show_subtitle_img']) : ?>
<img class="subtitle_img" src="<?= get_field("albums_arr")[15]['subtitle_img']; ?>" alt="">
<?php else : ?>
<h3><?= get_field("albums_arr")[15]['subtitle'] ?></h3>
<?php endif; ?>
<?= get_field("albums_arr")[15]['text'] ?>
<ul class="actions">
<?php foreach (get_field("albums_arr")[15]['albums_list'] as $key => $value) : ?>
<li class="song song-<?= $key; ?>" song="<?= $value['album_song']; ?>"><?= $value['album_name']; ?>
<img src="/wp-content/uploads/2024/04/volume.png" alt="">
</li>
<?php endforeach; ?>
<?php if(get_field("albums_arr")[15]['add_text'] == 1): ?>
<li class="song text">
Teksty
<img src="/wp-content/uploads/2024/04/txt.png" alt="">
<div class="text-data">
<?= get_field("albums_arr")[15]['melody_text'] ?>
</div>
</li>
<?php endif; ?>
</ul>
<div class="img-box">
<a href="<?= get_field("albums_arr")[15]['album_1_big']; ?>" data-fancybox>
<img class="album" src="<?= get_field("albums_arr")[15]['album_1']; ?>" alt="">
</a>
<img class="album-record" src="/wp-content/uploads/2024/04/record.png" alt="">
</div>
</section>