Update Home.py
Browse files
Home.py
CHANGED
|
@@ -67,12 +67,14 @@ if text_search:
|
|
| 67 |
st.caption(f"We found **{key_df_j.shape[0]}** article(s) available for you.")
|
| 68 |
|
| 69 |
for _, row in key_df_j.reset_index().iterrows():
|
| 70 |
-
with st.container(
|
| 71 |
-
col1, col2 = st.columns(
|
| 72 |
-
col1.
|
|
|
|
| 73 |
col2.caption(f"{row['Year'].strip()} - {row['Volume'].strip()}, {row['Issue'].strip()}")
|
| 74 |
-
|
| 75 |
st.markdown(f"**{row['Authors'].strip()}**")
|
| 76 |
|
| 77 |
popover = st.popover("Abstract", icon="🚨", help="Click to Read Abstract")
|
| 78 |
popover.write(row['Abstract (en)'].strip() if row['Abstract (en)'] else "No abstract available.")
|
|
|
|
|
|
| 67 |
st.caption(f"We found **{key_df_j.shape[0]}** article(s) available for you.")
|
| 68 |
|
| 69 |
for _, row in key_df_j.reset_index().iterrows():
|
| 70 |
+
with st.container():
|
| 71 |
+
col1, col2 = st.columns([6,4]])
|
| 72 |
+
col1.markdown(f"**{row['Title'].strip()}**")
|
| 73 |
+
col2.caption(f"**{row['Journal'].strip()}**")
|
| 74 |
col2.caption(f"{row['Year'].strip()} - {row['Volume'].strip()}, {row['Issue'].strip()}")
|
| 75 |
+
|
| 76 |
st.markdown(f"**{row['Authors'].strip()}**")
|
| 77 |
|
| 78 |
popover = st.popover("Abstract", icon="🚨", help="Click to Read Abstract")
|
| 79 |
popover.write(row['Abstract (en)'].strip() if row['Abstract (en)'] else "No abstract available.")
|
| 80 |
+
st.divider
|