{{ header }} 
<div class="author-info  {{ template }}">
	<div class="ocmp-heading-info">
		<div class="container">
			<h1 class="posted-info">{{ text_author ~ ' : ' ~ heading_title }}</h1>
		</div>	
	</div>
	<div class="container">
	  <ul class="breadcrumb">
		{% for breadcrumb in breadcrumbs %} 
		<li><a href="{{ breadcrumb['href'] }}">{{ breadcrumb['text'] }}</a></li>
		{% endfor %} 
	  </ul>
	  <div class="row">{{ column_left }} 
		{% if (column_left and column_right) %} 
		{% set class = 'col-sm-6' %} 
		{% elseif (column_left or column_right) %} 
		{% set class = 'col-sm-9' %} 
		{% else %} 
		{% set class = 'col-sm-12' %} 
		{% endif %} 
		<div id="content" class="{{ class }}">{{ content_top }} 
		 
		  {% if (thumb or description) %} 
			<div class="ocmp-author-info info-wrapper">
				{% if (thumb) %} 
				<div class="ocmp-author text-center col-sm-3 col-xs-12"><img src="{{ thumb }}" alt="{{ heading_title }}" title="{{ heading_title }}" class="img-circle" /></div>
				{% endif %} 
				<div class="ocmp-author-desc col-sm-9 col-xs-12">
					<h2>{{ heading_title }}</h2>
					{% if (description) %} 
						<div class="author-description">{{ description }}</div>
					{% endif %} 
				</div>	
			</div>	
		  {% endif %} 

			{% if (template is defined) %} 
				{% include 'default/template/blog/layout/' ~ template ~ '.twig' %} 
			{% elseif (blog_manager_post_list_layout) %} 
				{% include 'default/template/blog/layout/' ~ blog_manager_post_list_layout ~ '.twig' %}	
			{% else %} 
				{% include 'default/template/blog/layout/famous_template.twig' %}	
			{% endif %}	
				
		  {{ content_bottom }}</div>
		{{ column_right }}</div>
	</div>
</div>	
{{ footer }} 
