forked from OrchardCMS/OrchardDoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContributors.cshtml
19 lines (18 loc) · 982 Bytes
/
Contributors.cshtml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<script src="//cdnjs.cloudflare.com/ajax/libs/angular.js/1.2.20/angular.js"></script>
<script src="/Scripts/contributors.js"></script>
<script src="/Scripts/app.js"></script>
<link rel="stylesheet" href="/Styles/contributors.css" type="text/css" />
<div ng-app="ContributorsApp" ng-controller="ContributorsCtrl">
<ul>
<li ng-repeat="contributor in totalContributors" class="contributor">
<a class="contributor-left" href="{{ contributor.html_url }}" target="_blank">
<img ng-src="{{ contributor.avatar_url }}" alt="{{ contributor.login }}" class="contributor-image" />
</a>
<div class="contributor-body">
<h4 class="contributor-heading">{{ contributor.login }}</h4>
<p><a href="{{ contributor.html_url }}" target="_blank">{{ contributor.html_url }}</a></p>
<p>Total Contributions: {{ contributor.contributions }}</p>
</div>
</li>
</ul>
</div>