New box ena footer btn

This commit is contained in:
Roman Pyrih
2026-02-20 08:57:44 +01:00
parent abba7073e5
commit 81fa69fd11
6 changed files with 1394 additions and 1368 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

View File

@@ -76,6 +76,9 @@
<li>
<a href="<?php echo $footer_box['privacy-policy']['url']; ?>"><?php echo $footer_box['privacy-policy']['title']; ?></a>
</li>
<li>
<a href="<?php echo $footer_box['terms-and-conditions']['url']; ?>"><?php echo $footer_box['terms-and-conditions']['title']; ?></a>
</li>
<li>
<?php echo $footer_box['contact']; ?>
</li>

View File

@@ -0,0 +1,17 @@
<!--
Name: Regulamin parkingu
->
<?php get_header(); ?>
<main id="main">
<div class="container">
<?php
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content', 'page' );
endwhile;
?>
</div>
</main>
<?php get_footer(); ?>

View File

@@ -49,12 +49,26 @@
<div class="tile-col-1">
<?php echo $box2['big_card']['title']; ?>
<p><?php echo $box2['big_card']['text']; ?></p>
<?php if (isset($box2['big_card']['btn']['url'])) : ?>
<a class="btn-1" href="<?php echo $box2['big_card']['btn']['url']; ?>" <?php echo isset($box2['big_card']['btn']['target']) ? $box2['big_card']['btn']['target'] : ''; ?>><?php echo $box2['big_card']['btn']['title']; ?></a>
<?php endif; ?>
</div>
<div class="tile-col-2">
<img src="<?php echo $box2['big_card']['img']; ?>" alt="img">
</div>
</div>
<div class="tile tile-img">
<div class="tile-col-2">
<img src="<?php echo $box2['big_card_2']['img']; ?>" alt="img">
</div>
<div class="tile-col-1">
<?php echo $box2['big_card_2']['title']; ?>
<p><?php echo $box2['big_card_2']['text']; ?></p>
<?php if (isset($box2['big_card_2']['btn']['url'])) : ?>
<a class="btn-1" href="<?php echo $box2['big_card_2']['btn']['url']; ?>" <?php echo isset($box2['big_card_2']['btn']['target']) ? $box2['big_card_2']['btn']['target'] : ''; ?>><?php echo $box2['big_card_2']['btn']['title']; ?></a>
<?php endif; ?>
</div>
</div>
</div>
</div>
</div>