Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -251,26 +251,26 @@ if fetch_data:
|
|
251 |
)
|
252 |
|
253 |
with st.sidebar.expander("π Helpful Resources", expanded=False):
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
|
275 |
# Utility functions for deeper metadata quality analysis
|
276 |
def is_incomplete(value):
|
|
|
251 |
)
|
252 |
|
253 |
with st.sidebar.expander("π Helpful Resources", expanded=False):
|
254 |
+
st.markdown("""
|
255 |
+
<style>
|
256 |
+
.sidebar-links a {
|
257 |
+
color: lightgray !important;
|
258 |
+
text-decoration: none !important;
|
259 |
+
}
|
260 |
+
.sidebar-links a:hover {
|
261 |
+
text-decoration: underline !important;
|
262 |
+
}
|
263 |
+
</style>
|
264 |
+
<div class="sidebar-links">
|
265 |
+
<ul style='padding-left: 1em'>
|
266 |
+
<li><a href="https://www.loc.gov/apis/" target="_blank">LOC API Info</a></li>
|
267 |
+
<li><a href="https://www.loc.gov/" target="_blank">Library of Congress Homepage</a></li>
|
268 |
+
<li><a href="https://www.loc.gov/collections/" target="_blank">LOC Digital Collections</a></li>
|
269 |
+
<li><a href="https://www.loc.gov/marc/" target="_blank">MARC Metadata Standards</a></li>
|
270 |
+
<li><a href="https://labs.loc.gov/about-labs/digital-strategy/" target="_blank">LOC Digital Strategy</a></li>
|
271 |
+
</ul>
|
272 |
+
</div>
|
273 |
+
""", unsafe_allow_html=True)
|
274 |
|
275 |
# Utility functions for deeper metadata quality analysis
|
276 |
def is_incomplete(value):
|