mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
12 lines
316 B
HTML
12 lines
316 B
HTML
<template name="post_page">
|
|
<div class="single-post grid">
|
|
<div class="posts">
|
|
{{> UI.dynamic template=post_item}}
|
|
</div>
|
|
{{#if body}}
|
|
{{> UI.dynamic template=post_body}}
|
|
{{/if}}
|
|
{{> UI.dynamic template=comment_form}}
|
|
{{> UI.dynamic template=comment_list}}
|
|
</div>
|
|
</template>
|