generator-wp-fluidity
Version:
A WordPress theme YeoMan generator, to kickstart WordPress theme development with yo & grunt. Utilizing Stylus w/Fluidity, JadePHP, and Coffeescript.
44 lines (36 loc) • 1.27 kB
text/jade
:php
/**
* <%= themeName %> template for displaying Archives
*
* @package WordPress
* @subpackage <%= themeName %>
* @since <%= themeName %> 1.0
*/
- get_header();
.content
- if ( have_posts() ) :
h1
- printf( __( 'Search Results for: %s', '<%= themeName %>' ), get_search_query() );
.second-search
p
- _e( 'Not what you searched for? Try again with some different keywords.', '<%= themeName %>' );
- get_search_form();
- while ( have_posts() ) : the_post();
- get_template_part( 'loop', get_post_format() );
:php
wp_link_pages(
array(
'before' => '<div class="linked-page-nav"><p>' . sprintf( __( '<em>%s</em> is separated in multiple parts:', '<%= themeName %>' ), get_the_title() ) . '<br />',
'after' => '</p></div>',
'next_or_number' => 'number',
'separator' => ' ',
'pagelink' => __( '» Part %', '<%= themeName %>' ),
)
);
- endwhile
- else :
- get_template_part( 'loop', 'empty' );
- endif
.pagination
- get_template_part( 'template-part', 'pagination' );
- get_footer();