From 2f57051283107e83a392486e8d9075f91f1b3332 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Sat, 29 Jan 2022 16:08:16 +0700 Subject: Add `index.html` for `todos` and `tour` example You can use `trunk serve` to easily compile them! --- .gitignore | 1 + examples/todos/index.html | 12 ++++++++++++ examples/tour/index.html | 12 ++++++++++++ 3 files changed, 25 insertions(+) create mode 100644 examples/todos/index.html create mode 100644 examples/tour/index.html diff --git a/.gitignore b/.gitignore index 3872ed2f..56faba09 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ pkg/ **/*.rs.bk Cargo.lock .cargo/ +dist/ 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 @@ + + + + + + Todos - Iced + + + + + + 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 @@ + + + + + + Tour - Iced + + + + + + -- cgit