Skip to content

Instantly share code, notes, and snippets.

@zeeaws
zeeaws / home.ts
Created June 16, 2016 08:37 — forked from Zee2790/home.ts
home
import {Component} from '@angular/core';
@Component({
selector: 'as-home',
templateUrl: 'app/home/home.html',
styleUrls: [
'app/home/home.css'
]
})
export class HomeComponent {
@zeeaws
zeeaws / nav.html
Created June 16, 2016 08:33
navbar
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">{{brand}}</a>
@zeeaws
zeeaws / a.html
Created June 16, 2016 08:25
myapppp
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title"><i class="fa fa-home"></i> Home</h3>
</div>
<div class="panel-body">
<h4>Welcome to Angular 2 Starter!</h4>
<img width="140" height="100" src="assets/images/ng2.jpg" alt="Ng2">
</div>
</div>