web/wp-content/plugins/bbpress/templates/default/bbpress/content-archive-topic.php
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/web/wp-content/plugins/bbpress/templates/default/bbpress/content-archive-topic.php Tue Dec 04 18:43:10 2012 -0800
@@ -0,0 +1,36 @@
+<?php
+
+/**
+ * Archive Topic Content Part
+ *
+ * @package bbPress
+ * @subpackage Theme
+ */
+
+?>
+
+<div id="bbpress-forums">
+
+ <?php bbp_breadcrumb(); ?>
+
+ <?php if ( bbp_is_topic_tag() ) bbp_topic_tag_description(); ?>
+
+ <?php do_action( 'bbp_template_before_topics_index' ); ?>
+
+ <?php if ( bbp_has_topics() ) : ?>
+
+ <?php bbp_get_template_part( 'pagination', 'topics' ); ?>
+
+ <?php bbp_get_template_part( 'loop', 'topics' ); ?>
+
+ <?php bbp_get_template_part( 'pagination', 'topics' ); ?>
+
+ <?php else : ?>
+
+ <?php bbp_get_template_part( 'feedback', 'no-topics' ); ?>
+
+ <?php endif; ?>
+
+ <?php do_action( 'bbp_template_after_topics_index' ); ?>
+
+</div>