29 lines
987 B
HTML
29 lines
987 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>web_api_cookbook</title>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="stylesheet" type="text/css" href="Scripts/web_api_cookbook.css" />
|
|
<style>
|
|
/* Don't show the not-yet-loaded templates */
|
|
[ws-template], [ws-children-template] { display: none; }
|
|
</style>
|
|
<script type="text/javascript" src="Scripts/web_api_cookbook.head.js"></script>
|
|
</head>
|
|
<body>
|
|
<h1>My list of unique people</h1>
|
|
<div id="main" ws-children-template="Main">
|
|
<ul ws-hole="ListContainer">
|
|
<li ws-template="ListItem">${Name}</li>
|
|
</ul>
|
|
<div>
|
|
<input ws-var="Name" placeholder="Name" />
|
|
<button ws-onclick="Add">Add</button>
|
|
<div>You are about to add: ${Name}</div>
|
|
</div>
|
|
</div>
|
|
<script type="module" src="Scripts/web_api_cookbook.min.js"></script>
|
|
</body>
|
|
</html>
|