mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
19 lines
455 B
HTML
19 lines
455 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Mithril • TodoMVC</title>
|
|
<link rel="stylesheet" href="base.css">
|
|
<link rel="stylesheet" href="app.css">
|
|
</head>
|
|
<body>
|
|
<section id="todoapp"></section>
|
|
<footer id="info">
|
|
<p>Double-click to edit a todo</p>
|
|
<p>Part of <a href="http://todomvc.com">TodoMVC</a></p>
|
|
</footer>
|
|
<script src="../../mithril.js"></script>
|
|
<script src="todomvc.js"></script>
|
|
</body>
|
|
</html>
|