1st commit

This commit is contained in:
2024-04-06 11:45:36 +02:00
commit 62a52850bc
228 changed files with 37418 additions and 0 deletions

12
searchform.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
/**
* Template for displaying search form
*/
?>
<form role="search" method="get" id="searchform" class="searchform" action="<?php echo esc_url( home_url( '/' ) ); ?>">
<div>
<label class="screen-reader-text" for="s"><?php _e( 'Search for:', 'toppic' ); ?></label>
<input type="text" class="searchtext" value="<?php echo get_search_query(); ?>" name="s" id="s" placeholder="<?php _e( 'To search type and hit enter', 'toppic' ); ?>" />
<input type="submit" id="searchsubmit" value="<?php _e( 'Search', 'toppic' ); ?>" />
</div>
</form>