client-ui
Version:
Testing implementation of nodeJs Backend, angular frontend, and hopefully in a way that this can be deployed to s3/cloudfront
27 lines • 1.05 kB
HTML
<!--list of categories-->
<h3>Frequently Asked Questions</h3>
<br/>
<div ng-repeat="category in faqController.faqs">
<h4>{{category.name}}</h4>
<!--list of FAQs in category-->
<div id="{{category.id}}">
<div ng-repeat="faq in category.items">
<div class="panel-heading ">
<h4 class="panel-title">
<a class="link-hover" data-toggle="collapse" data-parent="{{'#' + category.id}}"
href="{{'#' + category.id + $index}}" style="font-family: 'Myriad-Pro', Arial, sans-serif;">
{{faq.title}}
</a>
</h4>
</div>
<div id="{{category.id + $index}}" class="panel-collapse collapse faqs">
<div class="panel-body" ng-bind-html="faqController.trustHtml(faq.body)">
</div>
</div>
</div>
</div>
</div>
<br><br>
<div class="row text-center">
<a href="#/account-creation" class="btn btn-success large-btn btn-wide">Get Started</a>
</div>