Theme: Initial commit.

This was forked from `pub/wporg-main` and `pub/wporg-plugins`, and then customized.
This commit is contained in:
Ian Dunn 2019-09-24 14:37:41 -07:00
commit de191e098b
No known key found for this signature in database
GPG key ID: 99B971B50343CBCB
38 changed files with 4532 additions and 0 deletions

View file

@ -0,0 +1,27 @@
<?php
namespace WordPressdotorg\Five_for_the_Future\Theme;
?>
<form role="search" method="get" class="search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>">
<label for="s" class="screen-reader-text">
<?php echo esc_html_x( 'Search for:', 'label', 'wporg-5ftf' ); ?>
</label>
<input
type="search"
id="s"
class="search-field"
placeholder="<?php echo esc_attr_x( 'Search', 'placeholder', 'wporg-5ftf' ); ?>"
value="<?php the_search_query(); ?>"
name="s"
/>
<button class="button button-primary button-search">
<i class="dashicons dashicons-search"></i>
<span class="screen-reader-text">
<?php esc_html_e( 'Search plugins', 'wporg-5ftf' ); ?>
</span>
</button>
</form>