Can you show the portion of the file it refers to.
i am use AngularJS.
<div class="row">
<div class="col-md-3 col-sm-3 hidden-xs">
<div class="block">
<ul class="sidebar-menu">
<li ng-class="'active':datas.type === 0"><a href="#/media/0">News</a></li>
<li ng-class="datas.type === 1 ? 'active' : ''"><a href="#/media/1">Press releases</a></li>
</ul>
</div>
</div>
<div class="col-md-9 col-sm-9 body-col">
<div class="title">
<h1><-%datas.ptitle%-></h1>
</div>
<article>
<div class="list-1" ng-repeat="content in datas.contents">
<a ng-if="content.image != 0" href="#/content/<-%content.id%->"><img ng-src="<-%content.image%->" width="120" alt=""></a>
<h4><a href="#/news/<-%content.id%->"><-%content.title%-></a></h4>
<p class="date"><-%content.date%-></p>
</div>
</article>
</div>
</div>
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community