faizhalas commited on
Commit
c01e186
·
verified ·
1 Parent(s): 332afaf

Update Home.py

Browse files
Files changed (1) hide show
  1. Home.py +4 -2
Home.py CHANGED
@@ -68,8 +68,10 @@ if text_search:
68
 
69
  for _, row in key_df_j.reset_index().iterrows():
70
  with st.container(border=True):
71
- st.caption(f"{row['Year'].strip()} - {row['Volume'].strip()}, {row['Issue'].strip()}")
 
 
 
72
  st.markdown(f"**{row['Authors'].strip()}**")
73
- st.markdown(f"**Title:** *{row['Title'].strip()}*")
74
  expander = st.expander("Abstract (en)")
75
  expander.write(row['Abstract (en)'].strip() if row['Abstract (en)'] else "No abstract available.")
 
68
 
69
  for _, row in key_df_j.reset_index().iterrows():
70
  with st.container(border=True):
71
+ col1, col2 = st.columns(2)
72
+ col1.caption(f"**{row['Journal'].strip()}**")
73
+ col2.caption(f"{row['Year'].strip()} - {row['Volume'].strip()}, {row['Issue'].strip()}")
74
+ st.markdown(f"**Title: ** *{row['Title'].strip()}*")
75
  st.markdown(f"**{row['Authors'].strip()}**")
 
76
  expander = st.expander("Abstract (en)")
77
  expander.write(row['Abstract (en)'].strip() if row['Abstract (en)'] else "No abstract available.")