Spaces:
Sleeping
Sleeping
Update testnavbar.py
Browse files- testnavbar.py +1 -9
testnavbar.py
CHANGED
|
@@ -56,15 +56,7 @@ def ProductCard(p):
|
|
| 56 |
def index():
|
| 57 |
# Titled using a H1 title, sets the page title, and wraps contents in Main(Container(...)) using
|
| 58 |
# frankenui styles. Generally you will want to use Titled for all of your pages
|
| 59 |
-
return
|
| 60 |
-
H3(A('H3 with Primary URL, a link does not work', href='', cls=AT.primary)),
|
| 61 |
-
P('I love monsterui!'),
|
| 62 |
-
P('I love monsterui!'),
|
| 63 |
-
A('Go to product gallery page', href='second.py', cls=AT.classic),
|
| 64 |
-
P('I love monsterui!'),
|
| 65 |
-
A('Go to Google, a link does not work', href='https://www.google.com', cls=AT.classic),
|
| 66 |
-
Card('A Fancy Card :)')),
|
| 67 |
-
Titled("Example Store Front!",
|
| 68 |
Grid(*[ProductCard(p) for p in products], cols_lg=3))
|
| 69 |
|
| 70 |
example_product_description = """\n
|
|
|
|
| 56 |
def index():
|
| 57 |
# Titled using a H1 title, sets the page title, and wraps contents in Main(Container(...)) using
|
| 58 |
# frankenui styles. Generally you will want to use Titled for all of your pages
|
| 59 |
+
return Titled("Example Store Front!",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 60 |
Grid(*[ProductCard(p) for p in products], cols_lg=3))
|
| 61 |
|
| 62 |
example_product_description = """\n
|