@@ -4,9 +4,9 @@ Creating Interfaces
44.. toctree ::
55 :hidden:
66
7- html-with-idom
8- your-first-components
9- rendering-data
7+ html-with-idom/index
8+ your-first-components/index
9+ rendering-data/index
1010
1111.. dropdown :: :octicon:`bookmark-fill;2em` What You'll Learn
1212 :color: info
@@ -16,20 +16,20 @@ Creating Interfaces
1616 .. grid :: 1 2 2 2
1717
1818 .. grid-item-card :: :octicon:`code-square` HTML with IDOM
19- :link: html-with-idom
19+ :link: html-with-idom/index
2020 :link-type: doc
2121
2222 Construct HTML layouts from the basic units of user interface functionality.
2323
2424 .. grid-item-card :: :octicon:`package` Your First Components
25- :link: your-first-components
25+ :link: your-first-components/index
2626 :link-type: doc
2727
2828 Define reusable building blocks that it easier to construct complex
2929 interfaces.
3030
3131 .. grid-item-card :: :octicon:`database` Rendering Data
32- :link: rendering-data
32+ :link: rendering-data/index
3333 :link-type: doc
3434
3535 Use data to organize and render HTML elements and components.
@@ -75,7 +75,7 @@ To recreate the same thing in IDOM you would write:
7575 )
7676
7777 .. card ::
78- :link: html-with-idom
78+ :link: html-with-idom/index
7979 :link-type: doc
8080
8181 :octicon: `book ` Read More
@@ -94,10 +94,10 @@ create them we need to add an ``@component`` `decorator
9494<https://realpython.com/primer-on-python-decorators/> `__. To see what this looks like in
9595practice we'll quickly make a ``Photo `` component:
9696
97- .. idom :: _examples/simple_photo
97+ .. idom :: your-first-components/ _examples/simple_photo
9898
9999.. card ::
100- :link: your-first-components
100+ :link: your-first-components/index
101101 :link-type: doc
102102
103103 :octicon: `book ` Read More
@@ -116,10 +116,10 @@ from data in this way must be orgnized with :ref:`"keys" <Organizing Items With
116116One case where we might want to do this is if items in a todo list come from a list of
117117data that we want to sort and filter:
118118
119- .. idom :: _examples/todo_list_with_keys
119+ .. idom :: rendering-data/ _examples/todo_list_with_keys
120120
121121.. card ::
122- :link: rendering-data
122+ :link: rendering-data/index
123123 :link-type: doc
124124
125125 :octicon: `book ` Read More
0 commit comments