-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Copy app's index.html to the layout.html file
For #2 — we include some basic scripts.
- Loading branch information
1 parent
e3b1b8a
commit 52569e0
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,26 @@ | |
title: Taxonomy lookup | ||
layout: free-form | ||
--- | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>TaxTest</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
|
||
<!-- Run angular client side --> | ||
<script>document.write('<base href="' + document.location + '" />');</script> | ||
<script src="https://unpkg.com/core-js/client/shim.min.js"></script> | ||
<script src="https://unpkg.com/[email protected]?main=browser"></script> | ||
<script src="https://unpkg.com/[email protected]/dist/system.src.js"></script> | ||
<script src="taxonomy-lookup/systemjs/systemjs.config.js"></script> | ||
<script> | ||
System.import('taxonomy-lookup/tax/src/main.ts').catch(function(err){ console.error(err); }); | ||
</script> | ||
<!-- END Run angular client side --> | ||
</head> | ||
|
||
<body> | ||
{{> taxonomy-lookup}} | ||
<app-root>Loading...</app-root> | ||
</body> | ||
</html> |