Blame view
src/index.html
1.73 KB
66ee5529f
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
<!doctype html> <html class="no-js" ng-app="sbAdminApp"> <head> <meta charset="utf-8"> <title>Startup Jalsa</title> <meta name="description" content="Startup Jalsa"> <meta name="author" content="Shyam Kumar"> <meta name="viewport" content="width=device-width"> <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> <script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/1.3.5/socket.io.min.js"></script> <!-- Place favicon.ico and apple-touch-icon.png in the root directory --> <!-- build:css({.tmp/serve,src}) styles/vendor.css --> <!-- bower:css --> <!-- run `gulp wiredep` to automaticaly populate bower styles dependencies --> <!-- endbower --> <!-- endbuild --> <!-- build:css({.tmp/serve,src}) styles/app.css --> <!-- inject:css --> <!-- css files will be automaticaly insert here --> <!-- endinject --> <!-- endbuild --> </head> <body> <!--[if lt IE 10]> <p>You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p> <![endif]--> <div ui-view layout="row" layout-fill></div> <!-- build:js(src) scripts/vendor.js --> <!-- bower:js --> <!-- run `gulp wiredep` to automaticaly populate bower script dependencies --> <!-- endbower --> <!-- endbuild --> <!-- build:js({.tmp/serve,.tmp/partials,src}) scripts/app.js --> <!-- inject:js --> <!-- js files will be automaticaly insert here --> <!-- endinject --> <!-- inject:partials --> <!-- angular templates will be automatically converted in js and inserted here --> <!-- endinject --> <!-- endbuild --> </body> </html> |