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.

24 lines
648 B
Smarty

<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">
12 years ago
<!-- BEGIN posts -->
<li class="post-row">
12 years ago
<p>{posts.content}</p>
<p>Posted {posts.relativeTime} by user {posts.uid}.</p>
12 years ago
</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}");
}
12 years ago
</script>