1st commit

This commit is contained in:
2024-04-06 11:45:36 +02:00
commit 62a52850bc
228 changed files with 37418 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<?php global $post; ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post();
galleryFS();
$content = get_the_content();
if(!empty($content)) { ?>
<div class="info-fs-form kk-active-button">
<!-- start info close icon -->
<div class="kk-info-close">
<span></span>
</div>
<!-- end info close icon -->
<div class="content-inner-wrapper">
<div class="content-child">
<?php the_content(); ?>
</div>
</div>
</div>
<?php } ?>
<?php endwhile; ?>
<?php endif; ?>