{% extends "base_generic.html" %}
{% block lefPanel %}{% include "leftMenuBar.html" %}{% endblock %}
{% load app_filters %}

{% block dash-title %}<a href="{{news.publisher.url}}" target="blank">{{news.publisher.name}}</a>{% endblock %}



{% block dash %}
<div class="row">
	<div class="col-lg-12">
	    <div class="panel panel-default">
		<div class="panel-heading" >
		    <a href="{{news.url}}" target="blank">{{news.title}}</a> <div style="float:right;">{{news.date}}</div>
		</div>
		<!-- .panel-heading -->
		<div class="panel-body">
		    <div class="panel-group news-text" id="accordion" style="text-align: justify; text-justify: auto;">
			<p>{{news.text|highlight:request.GET.text}}</p>
		    </div>
		</div>
		<!-- .panel-body -->
	    </div>
	    <!-- /.panel -->
	</div>
	<!-- /.col-lg-12 -->
</div>
<!-- /.row -->
{% endblock %}