generator-wp-fluidity
Version:
A WordPress theme YeoMan generator, to kickstart WordPress theme development with yo & grunt. Utilizing Stylus w/Fluidity, JadePHP, and Coffeescript.
42 lines (39 loc) • 1.23 kB
text/jade
:php
/**
* <%= themeName %> template for displaying Archives
*
* @package WordPress
* @subpackage <%= themeName %>
* @since <%= themeName %> 1.0
*/
article(id!="post- the_ID(); ")
h1
- if ( is_singular() ) :
- the_title();
- else :
a(href!=" echo esc_url( get_permalink() ); ", rel="bookmark")
- the_title();
- endif
.post-meta
- <%= themeName %>_post_meta();
.post-content
- if ( '' != get_the_post_thumbnail() ) :
- the_post_thumbnail();
- endif
- if ( is_front_page() || is_category() || is_archive() || is_search() ) :
- the_excerpt();
a(href!=" the_permalink(); ")
- _e( 'Read more »', '<%= themeName %>' );
- else :
- the_content( __( 'Continue reading »', '<%= themeName %>' ) );
- endif
:php
wp_link_pages(
array(
'before' => '<div class="linked-page-nav"><p>'. __( 'This article has more parts: ', '<%= themeName %>' ),
'after' => '</p></div>',
'next_or_number' => 'number',
'separator' => ' ',
'pagelink' => __( '<%>', '<%= themeName %>' ),
)
);