Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -11,7 +11,7 @@ links_html = "<ul>"
|
|
11 |
for item in dataset['train']: # Replace 'train' with the correct split if necessary
|
12 |
title = item['title']
|
13 |
url = item['url']
|
14 |
-
links_html += f"<li><a href='{
|
15 |
links_html += "</ul>"
|
16 |
|
17 |
# Use Streamlit components to render the HTML
|
|
|
11 |
for item in dataset['train']: # Replace 'train' with the correct split if necessary
|
12 |
title = item['title']
|
13 |
url = item['url']
|
14 |
+
links_html += f"<li><a href='{link}' target='_blank'>{cityOrState}</a></li>"
|
15 |
links_html += "</ul>"
|
16 |
|
17 |
# Use Streamlit components to render the HTML
|