45 lines
1.6 KiB
HTML
Executable file
45 lines
1.6 KiB
HTML
Executable file
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
|
<title>PouchDB • TodoMVC</title>
|
|
<link rel="stylesheet" href="style/base.css" />
|
|
</head>
|
|
<body>
|
|
<section id="todoapp">
|
|
<header id="header">
|
|
<h1>todos</h1>
|
|
<input id="new-todo" placeholder="What needs to be done?" autofocus />
|
|
</header>
|
|
<section id="main">
|
|
<ul id="todo-list">
|
|
<li id="li_1ec16e14-56c4-4ce0-a30f-4f9687330dd3" class="complete">
|
|
<div class="view">
|
|
<input class="toggle" type="checkbox" />
|
|
<label>task4</label
|
|
><button class="destroy"></button>
|
|
</div>
|
|
<input id="input_1ec16e14-56c4-4ce0-a30f-4f9687330dd3" class="edit" />
|
|
</li>
|
|
</ul>
|
|
</section>
|
|
<footer id="footer">
|
|
<span id="todo-count"></span>
|
|
<div id="sync-wrapper">
|
|
<div id="sync-success">Currently syncing</div>
|
|
<div id="sync-error">There was a problem syncing</div>
|
|
</div>
|
|
</footer>
|
|
</section>
|
|
<footer id="info">
|
|
<p>Double-click to edit a todo</p>
|
|
<p>Template by <a href="http://github.com/sindresorhus">Sindre Sorhus</a></p>
|
|
<p>Created by <a href="http://twitter.com/ffesseler">Florian Fesseler</a></p>
|
|
<p>Cleanup, edits by <a href="http://github.com/boushley">Aaron Boushley</a></p>
|
|
</footer>
|
|
<script src="https://cdn.jsdelivr.net/npm/pouchdb@8.0.0/dist/pouchdb.min.js"></script>
|
|
<script src="js/base.js"></script>
|
|
<script src="js/app.js"></script>
|
|
</body>
|
|
</html>
|