Added WordPress files and DB dump

This commit is contained in:
2020-10-14 19:43:03 +09:00
parent a33e1dd4df
commit b7cca72f8c
1552 changed files with 826520 additions and 0 deletions

View File

@@ -0,0 +1,77 @@
<?php
get_header();
get_template_part('sections/specia','breadcrumb'); ?>
<section class="page-wrapper">
<div class="container">
<div class="row padding-top-60 padding-bottom-60">
<?php
if ( class_exists( 'WooCommerce' ) )
{
if( is_account_page() || is_cart() || is_checkout() ) {
echo '<div class="col-md-'.( !is_active_sidebar( "woocommerce-1" ) ?"12" :"8" ).'">';
}
else{
echo '<div class="col-md-'.( !is_active_sidebar( "sidebar-primary" ) ?"12" :"8" ).'">';
}
}
else
{
echo '<div class="col-md-'.( !is_active_sidebar( "sidebar-primary" ) ?"12" :"8" ).'">';
}
?>
<div class="site-content">
<?php
if( have_posts()) : the_post();
the_content();
endif;
comments_template( '', true ); // show comments
?>
</div><!-- /.posts -->
</div><!-- /.col -->
<?php
if ( class_exists( 'WooCommerce' ) )
{
if( is_account_page() || is_cart() || is_checkout() ) {
get_sidebar('woocommerce');
}
else{
get_sidebar();
}
}
else
{
get_sidebar();
}
?>
</div><!-- /.row -->
</div><!-- /.container -->
</section>
<?php get_footer(); ?>