mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 20:16:39 -04:00
12 lines
327 B
HTML
12 lines
327 B
HTML
<template name="post_page">
|
|
<div class="single-post grid">
|
|
<div class="posts posts-list">
|
|
{{> 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>
|