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

101
footer.php Normal file
View File

@@ -0,0 +1,101 @@
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the "cs-site" div and all content after
*
* @package Revision
*/
?>
<?php
/**
* The csco_main_content_end hook.
*
* @since 1.0.0
*/
do_action( 'csco_main_content_end' );
?>
</div>
<?php
/**
* The csco_main_content_after hook.
*
* @since 1.0.0
*/
do_action( 'csco_main_content_after' );
?>
</div>
<?php
/**
* The csco_site_content_end hook.
*
* @since 1.0.0
*/
do_action( 'csco_site_content_end' );
?>
</div>
<?php
/**
* The csco_site_content_after hook.
*
* @since 1.0.0
*/
do_action( 'csco_site_content_after' );
?>
</main>
<?php
/**
* The csco_footer_before hook.
*
* @since 1.0.0
*/
do_action( 'csco_footer_before' );
?>
<?php get_template_part( 'template-parts/footer' ); ?>
<?php
/**
* The csco_footer_after hook.
*
* @since 1.0.0
*/
do_action( 'csco_footer_after' );
?>
</div>
<?php
/**
* The csco_site_end hook.
*
* @since 1.0.0
*/
do_action( 'csco_site_end' );
?>
</div>
<?php
/**
* The csco_site_after hook.
*
* @since 1.0.0
*/
do_action( 'csco_site_after' );
?>
<?php wp_footer(); ?>
</body>
</html>