Created
April 21, 2016 06:37
-
-
Save drhanlau/1cd71da3f5c7f64c980e5a984dac5e06 to your computer and use it in GitHub Desktop.
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
<!DOCTYPE html> | |
<html> | |
<head lang="en"> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>MyAppName</title> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css"> | |
<style> | |
/* Custom styles here */ | |
body { | |
padding-top: 75px; | |
padding-bottom: 40px; | |
background-color: #eee; | |
} | |
</style> | |
</head> | |
<body> | |
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation"> | |
<div class="container"> | |
<div class="navbar-header"> | |
<a class="navbar-brand" href="#/">MyAppName</a> | |
</div> | |
<div class="collapse navbar-collapse"> | |
<ul class="nav navbar-nav navbar-right"> | |
<li><a href="#/">Home</a></li> | |
</ul> | |
</div> | |
</div> | |
</nav> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-xs-8 col-xs-offset-2"> | |
Hello World | |
</div> | |
</div> | |
</div> | |
<!-- Insert Angular scripts here --> | |
<script src="js/app.js"></script> | |
<script src="js/controllers.js"></script> | |
<script src="js/filters.js"></script> | |
<script src="js/services.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment