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

View File

@@ -0,0 +1,75 @@
<?php
/**
* Template part singular content
*
* @package Revision
*/
?>
<div class="cs-entry__wrap">
<?php
/**
* The csco_entry_wrap_start hook.
*
* @since 1.0.0
*/
do_action( 'csco_entry_wrap_start' );
?>
<div class="cs-entry__container">
<?php
/**
* The csco_entry_container_start hook.
*
* @since 1.0.0
*/
do_action( 'csco_entry_container_start' );
?>
<div class="cs-entry__content-wrap">
<?php
/**
* The csco_entry_content_before hook.
*
* @since 1.0.0
*/
do_action( 'csco_entry_content_before' );
?>
<div class="entry-content">
<?php the_content(); ?>
</div>
<?php
/**
* The csco_entry_content_after hook.
*
* @since 1.0.0
*/
do_action( 'csco_entry_content_after' );
?>
</div>
<?php
/**
* The csco_entry_container_end hook.
*
* @since 1.0.0
*/
do_action( 'csco_entry_container_end' );
?>
</div>
<?php
/**
* The csco_entry_wrap_end hook.
*
* @since 1.0.0
*/
do_action( 'csco_entry_wrap_end' );
?>
</div>