AItool commited on
Commit
a044d29
·
verified ·
1 Parent(s): fea3a24

Update testnavbar.py

Browse files
Files changed (1) hide show
  1. testnavbar.py +5 -3
testnavbar.py CHANGED
@@ -4,10 +4,12 @@ hdrs = Theme.blue.headers(mode='light')
4
  app, rt = fast_app(hdrs=hdrs, live=True)
5
  @rt
6
  def index():
7
- return Title('Hello World'), Container(
8
- H3(A('Pretty URL', href='', cls=AT.primary)),
9
  P('I love monsterui!'),
10
- A('Go to Google', href='https://www.google.com', cls=AT.classic),
 
 
11
  Card('A Fancy Card :)')
12
  )
13
 
 
4
  app, rt = fast_app(hdrs=hdrs, live=True)
5
  @rt
6
  def index():
7
+ return Title('Hello World Title'), Container(
8
+ H3(A('H3 with Primary URL', href='', cls=AT.primary)),
9
  P('I love monsterui!'),
10
+ P('I love monsterui!'),
11
+ P('I love monsterui!'),
12
+ A('Go to Google does not work', href='https://www.google.com', cls=AT.classic),
13
  Card('A Fancy Card :)')
14
  )
15