-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.py
More file actions
38 lines (26 loc) · 587 Bytes
/
Copy pathindex.py
File metadata and controls
38 lines (26 loc) · 587 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import marimo
__generated_with = "0.14.7"
app = marimo.App(width="medium")
@app.cell(hide_code=True)
def _():
import marimo as mo
return (mo,)
@app.cell
def _(mo):
mo.md(
r"""
# Air by Example Index
This is a collection of Air-powered websites, from simple to complex. The goal is to teach you how to build your own Air sites by studying ours.
"""
)
return
@app.cell
def _(mo):
mo.md(r"""## 01 Hello, World""")
return
@app.cell
def _(mo):
mo.md(r"""## 02 Hello, HTMX""")
return
if __name__ == "__main__":
app.run()