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

18
searchform.php Normal file
View File

@@ -0,0 +1,18 @@
<?php
/**
* The template for displaying search form.
*
* @package Revision
*/
?>
<form role="search" method="get" class="cs-search__form cs-form-box" action="<?php echo esc_url( home_url( '/' ) ); ?>">
<div class="cs-search__group cs-form-group">
<input required class="cs-search__input" type="search" value="<?php the_search_query(); ?>" name="s" placeholder="<?php echo esc_attr__( 'Start Typing', 'revision' ); ?>" role="searchbox">
<button class="cs-search__submit" aria-label="Search" type="submit">
<?php echo esc_html__( 'Search', 'revision' ); ?>
</button>
</div>
</form>