Skip to content

Instantly share code, notes, and snippets.

@taly2808
Created October 22, 2014 07:52
Show Gist options
  • Save taly2808/d842fda580b03054ab41 to your computer and use it in GitHub Desktop.
Save taly2808/d842fda580b03054ab41 to your computer and use it in GitHub Desktop.
<div class="container-fluid">
<h2>{{flash}}</h2>
</div>
<div class="container-fluid">
<h3>{{flash}}</h3>
<i class="fa fa-envelope fa-5x fa-spin" style="color: red;"></i>
</div>
<div class="container-fluid">
<div class="jumbotron">
<img src="{{img}}" />
<h1>{{flash}}</h1>
</div>
</div>
<!DOCTYPE html>
<html ng-app="spaApp">
<head>
<title>Simple SPA</title>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.2.0/css/font-awesome.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.css" />
<script src="https://code.angularjs.org/1.2.25/angular.js"></script>
<script src="https://code.angularjs.org/1.2.25/angular-route.js"></script>
<script src="script.js"></script>
</head>
<body>
<header>
<nav class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">Simple Routing</a>
</div>
<ul class="nav navbar-nav nav-right">
<li><a href="#home"><i class="fa fa-home"></i> Home</a>
</li>
<li><a href="#about"><i class="fa fa-shield"></i> About</a>
</li>
<li><a href="#contact"><i class="fa fa-envelope"></i> Contact</a>
</li>
</ul>
</div>
</nav>
</header>
<div id="main">
<div ng-view></div>
</div>
</body>
</html>
angular.module('spaApp', ['ngRoute'])
.config(['$routeProvider',
function($routeProvider) {
$routeProvider
.when('/home', {
templateUrl: 'pages/home.html',
controller: 'HomeController'
})
.when('/about', {
templateUrl: 'pages/about.html',
controller: 'AboutController'
})
.when('/contact', {
templateUrl: 'pages/contact.html',
controller: 'ContactController'
})
.otherwise({
redirectTo: '/home'
});
}
])
.controller('HomeController', function($scope) {
$scope.flash = 'Hello world! I am Tweedy bird.';
$scope.img = 'http://img2.wikia.nocookie.net/__cb20121120221843/scratchpad/images/thumb/5/54/Tweety.gif/180px-Tweety.gif';
})
.controller('AboutController', function($scope) {
$scope.flash = 'This is about page, hihi!';
})
.controller('ContactController', function($scope) {
$scope.flash = 'Contact with me at here!';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment