Skip to content

Instantly share code, notes, and snippets.

@Rockncoder
Last active April 5, 2017 00:49
Show Gist options
  • Save Rockncoder/3143f26f33d64ec90b7ccd57d13e9d14 to your computer and use it in GitHub Desktop.
Save Rockncoder/3143f26f33d64ec90b7ccd57d13e9d14 to your computer and use it in GitHub Desktop.
Renders the GitHub Search results
<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