programa.html
1.16 KB
<div class="container page--conheca-o-programa">
<div ng-if="pageProgramaContent.article && pageProgramaContent.article.title">
<div ncy-breadcrumb></div>
</div>
<div ng-if="!pageProgramaContent.article.body">
<div ng-if="!pageProgramaContent.error" class="alert alert-info" role="alert">Carregando detalhes sobre o progama...</div>
<div ng-if="pageProgramaContent.error" class="alert alert-warning" role="alert">{{pageProgramaContent}}</div>
</div>
<div ng-if="pageProgramaContent.article.body">
<article class="program-content">
<div>
<section ng-bind-html="pageProgramaContent.article.body"></section>
</div>
</article>
<aside class="program--aside"ng-class="pageProgramaContent.article.categories[0].slug">
<div class="col-sm-6" >
<div class="button--themed">
<button class="btn btn-block" ng-click="pageProgramaContent.goToPreview()">
<span class="glyphicon glyphicon-arrow-left" aria-hidden="true"></span>
Participe
</button>
</div>
</div>
<div class="col-sm-6">
<social-share></social-share>
</div>
</aside>
</div>
</div>