resources/todomvc/architecture-examples/preact/public/index.html (21 lines of code) (raw):

<!DOCTYPE html> <html lang="en" data-framework="preact" data-version="10.11.3" data-features=""> <head> <meta charset="UTF-8" /> <meta name="description" content="A TodoMVC workload app for Speedometer!" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta http-equiv="X-UA-Compatible" content="ie=edge" /> <title>TodoMVC: Preact</title> <link rel="stylesheet" href="app.css" /> </head> <body> <section class="todoapp" id="root"></section> <footer class="info"> <p>Click on input field to write your todo.</p> <p>At least two characters are needed to be a valid entry.</p> <p>Press 'enter' to add the todo.</p> <p>Double-click to edit a todo</p> </footer> <script src="app.js"></script> </body> </html>