Update Home.py
Browse files
Home.py
CHANGED
|
@@ -103,8 +103,8 @@ if keyword_list_j is not None:
|
|
| 103 |
for _, row in key_df_j.reset_index().iterrows():
|
| 104 |
with st.container(border=True):
|
| 105 |
col1, col2 = st.columns([7,3])
|
| 106 |
-
col1.markdown(f"**{row[
|
| 107 |
-
col2.caption(f"**{row[
|
| 108 |
|
| 109 |
st.markdown(f"*{row["Authors"].strip()}*")
|
| 110 |
|
|
|
|
| 103 |
for _, row in key_df_j.reset_index().iterrows():
|
| 104 |
with st.container(border=True):
|
| 105 |
col1, col2 = st.columns([7,3])
|
| 106 |
+
col1.markdown(f"**{row['Title'].strip()}**")
|
| 107 |
+
col2.caption(f"**{row['Journal'].strip()}, {row['Volume'].strip()} ({row['Issue'].strip()}) - {row['Year'].strip()}**")
|
| 108 |
|
| 109 |
st.markdown(f"*{row["Authors"].strip()}*")
|
| 110 |
|