Created
September 11, 2013 20:14
-
-
Save guilhermegregio/6529160 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> | |
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> | |
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> | |
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> | |
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title></title> | |
<meta name="description" content=""> | |
<meta name="viewport" content="width=device-width"> | |
<!-- Place favicon.ico and apple-touch-icon.png in the root directory --> | |
<!-- build:css(.tmp) styles/main.css --> | |
<link rel="stylesheet" href="styles/main.css"> | |
<!-- endbuild --> | |
</head> | |
<body ng-app="angularApp"> | |
<!--[if lt IE 7]> | |
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p> | |
<![endif]--> | |
<!--[if lt IE 9]> | |
<script src="bower_components/es5-shim/es5-shim.js"></script> | |
<script src="bower_components/json3/lib/json3.min.js"></script> | |
<![endif]--> | |
<!-- Add your site or application content here --> | |
<ng-include src="'layout/default.html'"></ng-include> | |
<ng-view ng-hide="true"></ng-view> | |
<!--/ Add your site or application content here --> | |
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID --> | |
<script> | |
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ | |
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), | |
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) | |
})(window,document,'script','//www.google-analytics.com/analytics.js','ga'); | |
ga('create', 'UA-XXXXX-X'); | |
ga('send', 'pageview'); | |
</script> | |
<script src="bower_components/jquery/jquery.js"></script> | |
<script src="bower_components/angular/angular.js"></script> | |
<!-- build:js scripts/modules.js --> | |
<script src="bower_components/angular-resource/angular-resource.js"></script> | |
<script src="bower_components/angular-cookies/angular-cookies.js"></script> | |
<script src="bower_components/angular-sanitize/angular-sanitize.js"></script> | |
<!-- endbuild --> | |
<!-- build:js({.tmp,app}) scripts/scripts.js --> | |
<script src="scripts/app.js"></script> | |
<script src="scripts/controllers/main.js"></script> | |
<!-- endbuild --> | |
</body> | |
</html> |
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
<section id="main" class="login"> | |
<nav id="topo"> | |
<ul> | |
<li>4data</li> | |
<li>Guilherme Gregio</li> | |
<li>Logout</li> | |
</ul> | |
</nav> | |
<section id="login"> | |
<form> | |
<input type="text" placeholder="Login" /> | |
<input type="password" placeholder="Senha:" /> | |
</form> | |
</section> | |
<section id="home"> | |
<nav> | |
<ul> | |
<li>Tasks</li> | |
<li>Base</li> | |
<li>Message</li> | |
<li>Agenda</li> | |
<li>Relatorios</li> | |
</ul> | |
</nav> | |
</section> | |
<section id="page"> | |
<nav> | |
<ul> | |
<li>Tasks</li> | |
<li>Base</li> | |
<li>Message</li> | |
<li>Agenda</li> | |
<li>Relatorios</li> | |
</ul> | |
</nav> | |
<article class="container" ng-view=""></article> | |
</section> | |
</section> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment