Spaces:
Runtime error
Runtime error
Commit
·
e5180e3
1
Parent(s):
83ec67b
fix hrefs
Browse files
common.py
CHANGED
|
@@ -449,6 +449,7 @@ global_div = Div(
|
|
| 449 |
table_div_nfc_examples,
|
| 450 |
),
|
| 451 |
Section(H3("Conclusion"), P("NEED TO UPDATE")),
|
|
|
|
| 452 |
)
|
| 453 |
|
| 454 |
|
|
|
|
| 449 |
table_div_nfc_examples,
|
| 450 |
),
|
| 451 |
Section(H3("Conclusion"), P("NEED TO UPDATE")),
|
| 452 |
+
id="section1"
|
| 453 |
)
|
| 454 |
|
| 455 |
|
main.py
CHANGED
|
@@ -100,7 +100,7 @@ def main():
|
|
| 100 |
A(
|
| 101 |
"TxT360",
|
| 102 |
href="/intro#section1",
|
| 103 |
-
hx_get="/intro",
|
| 104 |
hx_target="#inner-text",
|
| 105 |
)
|
| 106 |
),
|
|
@@ -143,8 +143,8 @@ def main():
|
|
| 143 |
Div(
|
| 144 |
A(
|
| 145 |
"Global Processing Steps",
|
| 146 |
-
href="/common",
|
| 147 |
-
hx_get="/common",
|
| 148 |
hx_target="#inner-text",
|
| 149 |
)
|
| 150 |
),
|
|
|
|
| 100 |
A(
|
| 101 |
"TxT360",
|
| 102 |
href="/intro#section1",
|
| 103 |
+
hx_get="/intro#section1",
|
| 104 |
hx_target="#inner-text",
|
| 105 |
)
|
| 106 |
),
|
|
|
|
| 143 |
Div(
|
| 144 |
A(
|
| 145 |
"Global Processing Steps",
|
| 146 |
+
href="/common#section1",
|
| 147 |
+
hx_get="/common#section1",
|
| 148 |
hx_target="#inner-text",
|
| 149 |
)
|
| 150 |
),
|