You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
459 B
Smarty
17 lines
459 B
Smarty
<ul class="topic-container">
|
|
<!-- BEGIN posts -->
|
|
<li class="topic-row">
|
|
<p>{posts.content}</p>
|
|
<p>Posted {posts.relativeTime} by user {posts.uid}.</p>
|
|
</li>
|
|
<!-- END posts -->
|
|
</ul>
|
|
<hr />
|
|
<button id="post_reply" class="btn btn-primary btn-large">Reply</button>
|
|
<script type="text/javascript">
|
|
var post_reply = document.getElementById('post_reply');
|
|
post_reply.onclick = function() {
|
|
app.open_post_window('reply', {TOPIC_ID});
|
|
}
|
|
</script>
|