28 lines
1.0 KiB
PHP
28 lines
1.0 KiB
PHP
<?php
|
|
|
|
$rows = $b->setting_get_value("main_block4_faq");
|
|
|
|
?>
|
|
|
|
<div class="block5">
|
|
<h2 class="title-text"><span>Często zadawane pytania</span></h2>
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<?php foreach ($rows as $num => $row) { ?>
|
|
<div class="block5-item">
|
|
<div class="item-head d-flex align-items-start justify-content-between">
|
|
<h3 class="item-title"><?= $row["title"] ?></h3>
|
|
<button class="show-btn">
|
|
<svg width="19" height="10" viewBox="0 0 19 10" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<path d="M18 9L9.5 1L1 9" stroke="#717171"/>
|
|
</svg>
|
|
</button>
|
|
</div>
|
|
<ul class="item-info"><?= $row["answer"] ?></ul>
|
|
</div>
|
|
<?php } ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|