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.
|
|
|
<div class="container">
|
|
|
|
<ul class="breadcrumb">
|
|
|
|
<li><a href="/">Home</a> <span class="divider">/</span></li>
|
|
|
|
<li class="active">{TOPIC_NAME}</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<ul class="post-container">
|
|
|
|
<!-- BEGIN posts -->
|
|
|
|
<li class="post-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}", "{TOPIC_NAME}");
|
|
|
|
}
|
|
|
|
</script>
|