diff options
author | 2022-01-29 16:08:16 +0700 | |
---|---|---|
committer | 2022-01-29 16:08:16 +0700 | |
commit | 2f57051283107e83a392486e8d9075f91f1b3332 (patch) | |
tree | fad7674253a7d1d283efea442eb484174dee4c53 /examples | |
parent | 90afd1db8df17a7afa06b521ccd52455eced9277 (diff) | |
download | iced-2f57051283107e83a392486e8d9075f91f1b3332.tar.gz iced-2f57051283107e83a392486e8d9075f91f1b3332.tar.bz2 iced-2f57051283107e83a392486e8d9075f91f1b3332.zip |
Add `index.html` for `todos` and `tour` example
You can use `trunk serve` to easily compile them!
Diffstat (limited to 'examples')
-rw-r--r-- | examples/todos/index.html | 12 | ||||
-rw-r--r-- | examples/tour/index.html | 12 |
2 files changed, 24 insertions, 0 deletions
diff --git a/examples/todos/index.html b/examples/todos/index.html new file mode 100644 index 00000000..ee5570fb --- /dev/null +++ b/examples/todos/index.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="utf-8" content="text/html; charset=utf-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <title>Todos - Iced</title> + <base data-trunk-public-url /> +</head> +<body> +<link data-trunk rel="rust" href="Cargo.toml" data-wasm-opt="z" data-bin="todos" /> +</body> +</html> diff --git a/examples/tour/index.html b/examples/tour/index.html new file mode 100644 index 00000000..c64af912 --- /dev/null +++ b/examples/tour/index.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="utf-8" content="text/html; charset=utf-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <title>Tour - Iced</title> + <base data-trunk-public-url /> +</head> +<body> +<link data-trunk rel="rust" href="Cargo.toml" data-wasm-opt="z" data-bin="tour" /> +</body> +</html> |