client-ui
Version:
Testing implementation of nodeJs Backend, angular frontend, and hopefully in a way that this can be deployed to s3/cloudfront
25 lines • 813 B
HTML
<div ng-init="getCompanyData()">
<div class="row text-center">
<div class="col-md-12">
<h2>RocketLoans' Family of Companies</h2>
<div class="line"></div>
</div>
</div>
<div class="row" ng-repeat="company in companies track by $index">
<!-- <div class="col-col-12" ng-if="currentIndustry === company.industry">
<h3>{{company.industry}}</h3>
<div class="line"></div>
</div> -->
<!-- <div ng-repeat="item in company.company track by $index"> -->
<div class="col-md-4">
<a ng-href="{{company.websiteUrl}}" target="_blank">
<img class="foc-logos" ng-src="{{company.webLogoUrl}}">
</a>
</div>
<div class="col-md-8" >
<h5><a ng-href="{{company.websiteUrl}}" target="_blank">{{company.name}}</a></h5>
<p>{{company.description}}</p>
</div>
<!-- </div> -->
</div>
</div>