Skip to content

Instantly share code, notes, and snippets.

@jdanyow
Last active December 5, 2024 18:04
Show Gist options
  • Select an option

  • Save jdanyow/1ae985e6c943885496e8 to your computer and use it in GitHub Desktop.

Select an option

Save jdanyow/1ae985e6c943885496e8 to your computer and use it in GitHub Desktop.

Revisions

  1. jdanyow revised this gist Mar 6, 2016. 1 changed file with 2 additions and 2 deletions.
    4 changes: 2 additions & 2 deletions index.html
    Original file line number Diff line number Diff line change
    @@ -7,8 +7,8 @@
    <body aurelia-app>
    <h1>Loading...</h1>

    <script src="https://cdn.rawgit.com/jdanyow/aurelia-plunker/v0.11.10/jspm_packages/system.js"></script>
    <script src="https://cdn.rawgit.com/jdanyow/aurelia-plunker/v0.11.10/config2.js"></script>
    <script src="https://cdn.rawgit.com/jdanyow/aurelia-bundle/v1.0.3/jspm_packages/system.js"></script>
    <script src="https://cdn.rawgit.com/jdanyow/aurelia-bundle/v1.0.3/config.js"></script>
    <script>
    System.import('aurelia-bootstrapper');
    </script>
  2. jdanyow created this gist Mar 3, 2016.
    3 changes: 3 additions & 0 deletions app.html
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,3 @@
    <template>
    <h1>${message}</h1>
    </template>
    3 changes: 3 additions & 0 deletions app.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,3 @@
    export class App {
    message = 'Hello World!';
    }
    16 changes: 16 additions & 0 deletions index.html
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,16 @@
    <!doctype html>
    <html>
    <head>
    <title>Aurelia</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    </head>
    <body aurelia-app>
    <h1>Loading...</h1>

    <script src="https://cdn.rawgit.com/jdanyow/aurelia-plunker/v0.11.10/jspm_packages/system.js"></script>
    <script src="https://cdn.rawgit.com/jdanyow/aurelia-plunker/v0.11.10/config2.js"></script>
    <script>
    System.import('aurelia-bootstrapper');
    </script>
    </body>
    </html>