gladguy commited on
Commit
8864f15
·
1 Parent(s): ed365a8

Add visitor counter at bottom of page

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py CHANGED
@@ -318,6 +318,15 @@ with gr.Blocks(title="AnatomyBot") as demo:
318
  adm_stat = gr.Markdown()
319
  b_refresh = gr.Button("Refresh")
320
  tbl = gr.Dataframe()
 
 
 
 
 
 
 
 
 
321
 
322
  # --- EVENT HANDLERS ---
323
 
 
318
  adm_stat = gr.Markdown()
319
  b_refresh = gr.Button("Refresh")
320
  tbl = gr.Dataframe()
321
+
322
+ # Visitor Counter at the bottom
323
+ gr.HTML("""
324
+ <div style="text-align: center; padding: 20px; margin-top: 30px;">
325
+ <a href='http://www.freevisitorcounters.com'>more information</a>
326
+ <script type='text/javascript' src='https://www.freevisitorcounters.com/auth.php?id=87b94e1fdb825066c72a0b28d2edde7ede052535'></script>
327
+ <script type="text/javascript" src="https://www.freevisitorcounters.com/en/home/counter/1447474/t/5"></script>
328
+ </div>
329
+ """)
330
 
331
  # --- EVENT HANDLERS ---
332