UNPKG

@krisdages/aurelia-bootstrap

Version:
35 lines (31 loc) 1.67 kB
<!DOCTYPE html> <html> <head> <title>Aurelia Table</title> <!--The FontAwesome version is locked at 4.6.3 in the package.json file to keep this from breaking.--> <link rel="stylesheet" href="jspm_packages/github/twbs/bootstrap@3.3.7/css/bootstrap.min.css"> <link rel="stylesheet" href="jspm_packages/npm/font-awesome@4.6.3/css/font-awesome.min.css"> <link rel="stylesheet" href="styles/styles.css"> <link rel="stylesheet" href="styles/prism.css"> <link rel="stylesheet" href="styles/rainbow.css"> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <body aurelia-app="main"> <div class="splash"> <div class="message">Aurelia Bootstrap</div> <i class="fa fa-spinner fa-spin"></i> </div> <!-- The bluebird version is locked at 4.6.3 in the package.json file to keep this from breaking --> <!-- We include bluebird to bypass Edge's very slow Native Promise implementation. The Edge team --> <!-- has fixed the issues with their implementation with these fixes being distributed with the --> <!-- Windows 10 Anniversary Update on 2 August 2016. Once that update has pushed out, you may --> <!-- consider removing bluebird from your project and simply using native promises if you do --> <!-- not need to support Internet Explorer. --> <script src="jspm_packages/npm/bluebird@3.4.1/js/browser/bluebird.min.js"></script> <script src="jspm_packages/system.js"></script> <script src="config.js"></script> <script> System.import('aurelia-bootstrapper'); </script> </body> </html>