Last active
August 29, 2015 14:14
-
-
Save idooo/5ca94adb1676a6355315 to your computer and use it in GitHub Desktop.
simple index.html template
This file contains 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> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> | |
<base href="/"> | |
<title>Example Application</title> | |
<!-- build:css styles/main.min.css --> | |
<!-- include: "type": "css", "files": "styles/main.css" --> | |
<!-- include: "type": "css", "files": "styles/components/**/*.css" --> | |
<!-- endbuild --> | |
<!-- build:css styles/vendor.min.css --> | |
<!-- bower:css --> | |
<!-- endbower --> | |
<!-- include: "type": "css", "files": "styles/vendor.css" --> | |
<!-- endbuild --> | |
</head> | |
<body ng-app="exampleApp"> | |
<div class="viewport" ui-view="content"></div> | |
<!-- build:js scripts/vendor.min.js --> | |
<!-- bower:js --> | |
<!-- endbower --> | |
<!-- include: "type": "js", "files": "scripts/another_vendor_code.js" --> | |
<!-- endbuild --> | |
<!-- build:js scripts/app.min.js --> | |
<!-- include: "type": "js", "files": "scripts/app.js" --> | |
<!-- include: "type": "js", "files": "scripts/directives/**/*.js" --> | |
<!-- include: "type": "js", "files": "scripts/controllers/**/*.js" --> | |
<!-- endbuild --> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment