UNPKG

generator-wp-fluidity

Version:

A WordPress theme YeoMan generator, to kickstart WordPress theme development with yo & grunt. Utilizing Stylus w/Fluidity, JadePHP, and Coffeescript.

30 lines (26 loc) 822 B
:php /** * <%= themeName %> template for displaying Archives * * @package WordPress * @subpackage <%= themeName %> * @since <%= themeName %> 1.0 */ - get_header(); .content :php if (have_posts()): the_post(); get_template_part('loop'); 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' => __( '&raquo; Part %', '<%= themeName %>' ), ) ); else : get_template_part( 'loop', 'empty' ); endif; - get_footer();