Last active
April 5, 2017 00:49
-
-
Save Rockncoder/3143f26f33d64ec90b7ccd57d13e9d14 to your computer and use it in GitHub Desktop.
Renders the GitHub Search results
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div> | |
<h2>Total Results: {{total | number }}</h2> | |
<div class="button-row"> | |
<button md-raised-button (click)="previousPage()" [disabled]="!previousUrl">Previous</button> | |
<button md-raised-button (click)="nextPage()" [disabled]="!nextUrl">Next</button> | |
</div> | |
<md-list> | |
<md-list-item *ngFor="let item of items"> | |
<img md-list-avatar md-line src="{{item.owner.avatar_url}}"/> | |
<h2 md-line> {{item.full_name}}</h2> | |
<span md-line> <md-icon>star</md-icon>{{item.stargazers_count}}, {{item.size}}, {{item.language}}</span> | |
<p md-line>{{item.description}}</p> | |
<span md-line>{{item.updated_at}}</span> | |
</md-list-item> | |
</md-list> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment