1{* $Id$ *}
2<div class="panel postbody clearfix">
3	<a id="postId{$post_info.postId}"></a>
4	{include file='blog_post_postbody_title.tpl'}
5	{include file='blog_post_postbody_content.tpl'}
6	{if $blog_post_context neq 'excerpt' or $blog_post_context neq 'view_blog'}
7		{if $blog_post_context neq 'print'}
8			<footer class="postfooter card-footer clearfix">
9				{* Copyright display is being turned off if being called through the "BLOG" plugin with "simple" mode turned off and a max character count supplied (preview mode). If in preview mode end user most likely is wanting to conserve space with a smaller display of information *}
10				{if $blog_post_context neq 'plugin_preview'}
11					{capture name='copyright_section'}
12						{include file='show_copyright.tpl' copyright_context="blogpost"}
13					{/capture}
14					{* When copyright section is not empty show it *}
15					{if $smarty.capture.copyright_section neq ''}
16						<div class="form-text">
17							{$smarty.capture.copyright_section}
18						</div>
19					{/if}
20				{/if}
21				{include file='blog_post_actions.tpl'}
22				{include file='blog_post_author_info.tpl'}
23				{include file='freetag_list.tpl'}
24				{include file='blog_post_status.tpl'}
25				{include file='blog_post_navigation.tpl'}
26			</footer>
27		{else}
28			{* Show copyright information in print view *}
29			{if $blog_post_context neq 'plugin_preview'}
30				{capture name='copyright_section'}
31					{include file='show_copyright.tpl' copyright_context="blogpost"}
32				{/capture}
33				{* When copyright section is not empty show it *}
34				{if $smarty.capture.copyright_section neq ''}
35					<div class="form-text">
36						{$smarty.capture.copyright_section}
37					</div>
38				{/if}
39			{/if}
40		{/if}
41	{/if}
42</div>
43