{% if (comments) %} 
	<div class="blog-group">
		<h3>{{ heading_title }}</h3>
		<div class="blog-content">
			<ul class="recentcomments list-unstyled">
				{% for comment in comments %} 
					<li><span class="author-name">{{ comment['author'] }}</span>
						<a href="{{ comment['href'] }}">{{ comment['name'] }}</a>
					</li>	
				{% endfor %} 
			</ul>
		</div>	
	</div>
{% endif %} 
<style type="text/css">
.blog-group{background:#ffffff;}
.recentcomments a{	
	{% if (blog_manager_alternative_text_color) %} 
	color: {{ blog_manager_alternative_text_color }};
	{% else %} {{ 'color:#62bf7c;' }} {% endif %} 
}
.recentcomments a:hover{	
	{% if (blog_manager_alternative_hover_color) %} 
	color: {{ blog_manager_alternative_hover_color }};
	{% else %} {{ 'color:#686868;' }} {% endif %} 
}

</style>