first commit

This commit is contained in:
Roman Pyrih
2023-07-24 08:30:51 +02:00
commit c2e100a763
7128 changed files with 1622619 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<?php
/**
* Template for displaying search forms
*
*/
?>
<form role="search" method="get" class="search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>">
<div class="form-group bottommargin_0">
<input type="search" class="search-field form-control"
placeholder="<?php echo esc_attr_x( 'Keyword', 'placeholder', 'solarify' ); ?>"
value="<?php echo get_search_query(); ?>" name="s"
title="<?php echo esc_attr_x( 'Search for:', 'label', 'solarify' ); ?>"/>
</div>
<button type="submit" class="search-submit theme_button no_bg_button">
<?php echo esc_html_x( 'ok', 'submit button', 'solarify' ); ?>
</button>
</form>