client-ui
Version:
Testing implementation of nodeJs Backend, angular frontend, and hopefully in a way that this can be deployed to s3/cloudfront
49 lines (48 loc) • 2.44 kB
HTML
<div>
<h3 class="no-space">Who We Are</h3><br>
<div class="about-us-header">
<p>
Headquartered in Detroit, MI, RocketLoans was established to create the most simple, rocket fast personal loan process. We assembled a top-notch team of individuals combining new, passionate team members with some of the best veterans from Quicken Loans to create the most user-friendly lending platform in the world. We have given it our best to create an experience that is best-of-breed in the personal loan industry and commit even more to continuously improving it. Want to know more about our company culture? Check out our <a href="http://www.quickenloans.com/press-room/fast-facts#isms" target="_blank">ISMS</a>.
</p>
</div>
<h3 class="headerSpace">Our Leadership</h3>
<br>
<div ng-if="!displayLayout" ng-repeat="leader in persons track by $index">
<div class="col-xs-6 col-md-3 outline show-pointer text-center" ng-click="pictureClick(leader.id)">
<div class="col-xs-12">
<img class="img-responsive bio-pic text-center" ng-src="{{leader.photo}}"/>
</div>
<div class="row">
<div class="col-xs-12">
<h5>{{leader.fullname}}</h5>
<h6 ng-bind-html="trustHtml(leader.designation)"></h6>
</div>
</div>
</div>
</div>
<div ng-if="displayLayout">
<div class="col-sm-4">
<div class="row">
<img class="img-responsive bio-pic" ng-src="{{person.photo}}" />
</div>
<div class="row">
<h5>{{person.fullname}}</h5>
<h6 ng-bind-html="trustHtml(person.designation)"></h6>
</div>
<div class="row">
<div class="col-sm-12">
<div class="col-xs-4" ng-repeat="member in team track by $index">
<div class="outline" ng-click="pictureClick(member.id)">
<img class="img-responsive bio-pic" ng-src="{{member.photo}}" />
{{member.name}}
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-8">
<div class="row">
<div class="panel-body" ng-bind-html="trustHtml(person.biodata)"></div>
</div>
</div>
</div>