summaryrefslogtreecommitdiff
blob: dc21e64516e89cc45afebc3975714e49bc17f30a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<div
	{{#if isModerated}}
		class="flow-post-main flow-post-moderated flow-click-interactive flow-element-collapsible flow-element-collapsed"
		data-flow-interactive-handler="collapserCollapsibleToggle"
		tabindex="0"
	{{else}}
		class="flow-post-main"
	{{/if}}
>
	{{> flow_errors}}

	{{#with creator}}
		{{> flow_post_author}}
	{{/with}}

	{{#if isModerated}}
		<div class="flow-moderated-post-content">
			{{> flow_post_moderation_state}}
		</div>
	{{/if}}

	<div class="flow-post-content">
		{{escapeContent content.format content.content}}
	</div>

	{{!-- This stuff is not needed in preview mode --}}
	{{#unless isPreview}}
		{{> flow_post_meta_actions}}
		{{> flow_post_actions}}
	{{/unless}}
</div>