HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: /home/mmickelson/otbproductions.org/wp-content/themes/boldgrid-swifty/templates/header/search.php
<?php
/**
 * Search Template
 *
 * This file contains the markup for search template.
 *
 * @package Prime
 */

// Get the theme configs.
global $boldgrid_theme_framework;
$configs = $boldgrid_theme_framework->get_configs();
// Default navbar-right search form.
$search_classes = 'navbar-form navbar-right';
// If offcanvas is enabled, menu is vertical.
if ( true === $configs['scripts']['offcanvas-menu'] ) {
	$search_classes = 'navbar-form';
}
?>
<form method="get" id="searchform" action="<?php echo esc_url( home_url( '/' ) ); ?>" role="search" class="<?php echo esc_attr( $search_classes ) ?>">
	<div class="form-group">
		<input type="text" class="form-control" name="s" value="<?php echo esc_attr( get_search_query( ) ); ?>" id="s" placeholder="<?php esc_attr_e( 'Search &hellip;', 'bgtfw' ); ?>" />
	</div>
	<button type="submit" class="btn btn-default button-primary"><span class="fa fa-search"></span><span>&nbsp;Search</span></button>
</form>