Changeset 32
- Timestamp:
- 12/12/05 21:08:30 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/frontend/modules/sidebar/templates/questionSuccess.php
r31 r32 1 <?php use_helper('Javascript') ?> 2 1 3 <?php echo link_to('ask a new question', 'question/new') ?> 2 4 3 5 <ul> 4 6 <li><?php echo link_to('popular questions', 'question/list') ?> … … 6 8 <li><?php echo link_to('latest answers', 'answer/recent') ?></li> 7 9 </ul> 8 10 9 11 <h2>question tags</h2> 10 11 < divid="question_tags">12 13 <ul id="question_tags"> 12 14 <?php echo include_partial('tag/question_tags', array('question' => $question, 'tags' => $question->getTags())) ?> 13 </ div>15 </ul> trunk/frontend/modules/tag/templates/_question_tags.php
r31 r32 1 <ul>2 1 <?php foreach($tags as $tag): ?> 3 2 <li><?php echo link_to($tag, '@tag?tag='.$tag, 'rel=tag') ?></li> 4 3 <?php endforeach ?> 5 </ul>
