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

<!DOCTYPE html> <html lang="en" data-framework="svelte" data-version="3.58.0" data-features="rollup"> <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: Svelte</title> <link rel="stylesheet" href="app.css" /> </head> <body> <section class="todoapp"></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>