@@ -4,9 +4,9 @@ Creating Interfaces
4
4
.. toctree ::
5
5
:hidden:
6
6
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
10
10
11
11
.. dropdown :: :octicon:`bookmark-fill;2em` What You'll Learn
12
12
:color: info
@@ -16,20 +16,20 @@ Creating Interfaces
16
16
.. grid :: 1 2 2 2
17
17
18
18
.. grid-item-card :: :octicon:`code-square` HTML with IDOM
19
- :link: html-with-idom
19
+ :link: html-with-idom/index
20
20
:link-type: doc
21
21
22
22
Construct HTML layouts from the basic units of user interface functionality.
23
23
24
24
.. grid-item-card :: :octicon:`package` Your First Components
25
- :link: your-first-components
25
+ :link: your-first-components/index
26
26
:link-type: doc
27
27
28
28
Define reusable building blocks that it easier to construct complex
29
29
interfaces.
30
30
31
31
.. grid-item-card :: :octicon:`database` Rendering Data
32
- :link: rendering-data
32
+ :link: rendering-data/index
33
33
:link-type: doc
34
34
35
35
Use data to organize and render HTML elements and components.
@@ -75,7 +75,7 @@ To recreate the same thing in IDOM you would write:
75
75
)
76
76
77
77
.. card ::
78
- :link: html-with-idom
78
+ :link: html-with-idom/index
79
79
:link-type: doc
80
80
81
81
:octicon: `book ` Read More
@@ -94,10 +94,10 @@ create them we need to add an ``@component`` `decorator
94
94
<https://realpython.com/primer-on-python-decorators/> `__. To see what this looks like in
95
95
practice we'll quickly make a ``Photo `` component:
96
96
97
- .. idom :: _examples/simple_photo
97
+ .. idom :: your-first-components/ _examples/simple_photo
98
98
99
99
.. card ::
100
- :link: your-first-components
100
+ :link: your-first-components/index
101
101
:link-type: doc
102
102
103
103
:octicon: `book ` Read More
@@ -116,10 +116,10 @@ from data in this way must be orgnized with :ref:`"keys" <Organizing Items With
116
116
One case where we might want to do this is if items in a todo list come from a list of
117
117
data that we want to sort and filter:
118
118
119
- .. idom :: _examples/todo_list_with_keys
119
+ .. idom :: rendering-data/ _examples/todo_list_with_keys
120
120
121
121
.. card ::
122
- :link: rendering-data
122
+ :link: rendering-data/index
123
123
:link-type: doc
124
124
125
125
:octicon: `book ` Read More
0 commit comments