Last active
November 10, 2015 04:33
-
-
Save plwalters/cf54d08d3e55a93a54ee to your computer and use it in GitHub Desktop.
Accompanying enhance samples
This file contains hidden or 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> | |
<title>Aurelia</title> | |
<link rel="stylesheet" href="jspm_packages/npm/[email protected]/css/font-awesome.min.css"> | |
<link rel="stylesheet" href="jspm_packages/github/twbs/[email protected]/css/bootstrap.min.css"> | |
<link rel="stylesheet" href="styles/styles.css"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
</head> | |
<body> | |
<div class="page-host"> | |
<div class="col-xs-12"> | |
<table-header> | |
<h1>Users</h1> | |
</table-header> | |
<table class="table"> | |
<thead> | |
<tr> | |
<th> | |
First Name | |
</th> | |
<th> | |
Last Name | |
</th> | |
<th> | |
Gender | |
</th> | |
<th> | |
State of Residence | |
</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td> | |
Patrick | |
</td> | |
<td> | |
Walters | |
</td> | |
<td> | |
Male | |
</td> | |
<td> | |
Texas | |
</td> | |
</tr> | |
<tr> | |
<td> | |
Rob | |
</td> | |
<td> | |
Eisenberg | |
</td> | |
<td> | |
Male | |
</td> | |
<td> | |
Florida | |
</td> | |
</tr> | |
<tr> | |
<td> | |
Julie | |
</td> | |
<td> | |
Lerman | |
</td> | |
<td> | |
Female | |
</td> | |
<td> | |
Vermont | |
</td> | |
</tr> | |
</tbody> | |
</table> | |
</div> | |
</div> | |
<script src="jspm_packages/system.js"></script> | |
<script src="config.js"></script> | |
<script> | |
System.import('aurelia-bootstrapper'); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment