Initial commit
This commit is contained in:
37
playarea/templates/pages/faq.php
Normal file
37
playarea/templates/pages/faq.php
Normal file
@@ -0,0 +1,37 @@
|
||||
<?php $this->template_load("head.php"); ?>
|
||||
<?php $this->template_load("header.php"); ?>
|
||||
|
||||
<?php
|
||||
|
||||
$rows = $b->setting_get_value("faq_list");
|
||||
|
||||
?>
|
||||
|
||||
<main class="main">
|
||||
<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>
|
||||
</main>
|
||||
|
||||
<?php $this->template_load("footer.php"); ?>
|
||||
Reference in New Issue
Block a user