Skip to content

Commit

Permalink
Mirage: Introduce indented view setup.
Browse files Browse the repository at this point in the history
  • Loading branch information
coder4life committed Apr 26, 2012
1 parent b90220e commit a73673d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 2 additions & 0 deletions components/com_kunena/template/mirage/html/topic/indented.php
Expand Up @@ -13,3 +13,5 @@
$this->displayPoll();
$this->displayModulePosition( 'kunena_poll' );
$this->displayTemplateFile('topic', 'indented', 'list');

?>
Expand Up @@ -17,7 +17,7 @@
<div class="header">
<!-- a href="#" title="Topic RSS Feed"><span class="krss-icon">Topic RSS Feed</span></a -->
<!-- a href="#" title="View Subscribers of this Topic" class="ktopic-subsc">4 Subscribers</a -->
<h2 class="header"><?php echo JText::_('COM_KUNENA_TOPIC') ?> <a href="#" rel="ktopic-detailsbox"><?php echo $this->escape($this->topic->subject) ?></a></h2>
<h2 class="header"><?php echo JText::_('COM_KUNENA_TOPIC') ?> <a href="#" rel="ktopic-detailsbox"><?php echo $this->displayTopicField('subject') ?></a></h2>
<?php if ( $this->config->keywords ) : ?>
<ul class="list-unstyled topic-taglist">
<?php if (!empty($this->keywords)) : ?>
Expand All @@ -37,9 +37,7 @@
<div class="innerbox-wrapper kbox-full">
<div class="topic_indented-detailsbox detailsbox">
<ul class="list-unstyled topic-posts">
<?php foreach ( $this->messages as $id=>$message ) : ?>
<?php $this->displayMessage($id, $message, 'message'); ?>
<?php endforeach ?>
<?php $this->displayMessages(); ?>
</ul>
</div>
</div>
Expand Down

0 comments on commit a73673d

Please sign in to comment.