first commit

This commit is contained in:
CHIEFSOFT\ameye
2023-11-30 13:20:54 -05:00
commit e9e5c0546c
5833 changed files with 1801865 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
<?php get_header(); ?>
<!-- start page content container -->
<div class="row single-page">
<article class="col-md-<?php enwoo_main_content_width_columns(); ?>">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div <?php post_class(); ?>>
<?php do_action('enwoo_page_content'); ?>
</div>
<?php endwhile; ?>
<?php else : ?>
<?php get_template_part('content', 'none'); ?>
<?php endif; ?>
</article>
<?php do_action('enwoo_sidebar'); ?>
</div>
<!-- end page content container -->
<?php
get_footer();