Initial commit

This commit is contained in:
2025-09-12 21:24:58 -03:00
commit b8ce07158c
14 changed files with 3873 additions and 0 deletions

17
sidebar.php Normal file
View File

@@ -0,0 +1,17 @@
<?php
/**
* O arquivo da barra lateral
*
* @package NewSTC
*/
if ( ! is_active_sidebar( 'sidebar-1' ) ) {
return;
}
?>
<aside id="secondary" class="sidebar">
<div class="container">
<?php dynamic_sidebar( 'sidebar-1' ); ?>
</div>
</aside><!-- #secondary -->