Skip to content

Instantly share code, notes, and snippets.

@AndrewAllison
Created April 24, 2015 09:21
Show Gist options
  • Save AndrewAllison/870ed80c9c713181e97d to your computer and use it in GitHub Desktop.
Save AndrewAllison/870ed80c9c713181e97d to your computer and use it in GitHub Desktop.
Gulp examples
<!DOCTYPE html>
<html ng-app="app">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no" />
<title ng-bind="title"></title>
<base href="/">
<style>
/* This helps the ng-show/ng-hide animations start at the right place. */
/* Since Angular has this but needs to load, this gives us the class early. */
.ng-hide {
display: none !important;
}
</style>
<!-- build:css styles/lib.css -->
<!-- bower:css -->
<!-- endbower -->
<!-- endbuild -->
<!-- build:css styles/app.css-->
<!-- inject:css -->
<!-- endinject -->
<!-- endbuild -->
</head>
<body>
<page-loader></page-loader>
<div ui-view></div>
<!-- build:js js/lib.js -->
<!-- bower:js -->
<!-- endbower -->
<!-- endbuild -->
<!-- build:js js/app.js-->
<!-- inject:js -->
<!-- endinject -->
<!-- inject:templates:js -->
<!-- endinject -->
<!-- endbuild -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment