first commit without licensingg

This commit is contained in:
kbe
2025-08-21 14:40:43 +02:00
commit fa8d4e58a4
130 changed files with 82163 additions and 0 deletions

60
page.php Normal file
View File

@@ -0,0 +1,60 @@
<?php
/**
* The template for displaying all single pages.
*
* @package Revision
*/
get_header(); ?>
<div id="primary" class="cs-content-area">
<?php
/**
* The csco_main_before hook.
*
* @since 1.0.0
*/
do_action( 'csco_main_before' );
?>
<?php
while ( have_posts() ) :
the_post();
?>
<?php
/**
* The csco_page_before hook.
*
* @since 1.0.0
*/
do_action( 'csco_page_before' );
?>
<?php get_template_part( 'template-parts/content-singular' ); ?>
<?php
/**
* The csco_page_after hook.
*
* @since 1.0.0
*/
do_action( 'csco_page_after' );
?>
<?php endwhile; ?>
<?php
/**
* The csco_main_after hook.
*
* @since 1.0.0
*/
do_action( 'csco_main_after' );
?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>