web/wp-content/plugins/bbpress/templates/default/bbpress/content-archive-topic.php
changeset 196 5e8dcbe22c24
equal deleted inserted replaced
195:c7c0fbc09788 196:5e8dcbe22c24
       
     1 <?php
       
     2 
       
     3 /**
       
     4  * Archive Topic Content Part
       
     5  *
       
     6  * @package bbPress
       
     7  * @subpackage Theme
       
     8  */
       
     9 
       
    10 ?>
       
    11 
       
    12 <div id="bbpress-forums">
       
    13 
       
    14 	<?php bbp_breadcrumb(); ?>
       
    15 
       
    16 	<?php if ( bbp_is_topic_tag() ) bbp_topic_tag_description(); ?>
       
    17 
       
    18 	<?php do_action( 'bbp_template_before_topics_index' ); ?>
       
    19 
       
    20 	<?php if ( bbp_has_topics() ) : ?>
       
    21 
       
    22 		<?php bbp_get_template_part( 'pagination', 'topics'    ); ?>
       
    23 
       
    24 		<?php bbp_get_template_part( 'loop',       'topics'    ); ?>
       
    25 
       
    26 		<?php bbp_get_template_part( 'pagination', 'topics'    ); ?>
       
    27 
       
    28 	<?php else : ?>
       
    29 
       
    30 		<?php bbp_get_template_part( 'feedback',   'no-topics' ); ?>
       
    31 
       
    32 	<?php endif; ?>
       
    33 
       
    34 	<?php do_action( 'bbp_template_after_topics_index' ); ?>
       
    35 
       
    36 </div>