Update Home.py
Browse files
Home.py
CHANGED
|
@@ -106,7 +106,7 @@ if keyword_list_j is not None:
|
|
| 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[
|
| 110 |
|
| 111 |
btn1, btn2, btn3, btn4 = st.columns(4)
|
| 112 |
popover1 = btn1.popover("Abstrak", icon="🔤", help="Klik untuk membaca abstrak dalam Bahasa Indonesia", use_container_width=False)
|
|
@@ -117,7 +117,7 @@ if keyword_list_j is not None:
|
|
| 117 |
|
| 118 |
btn3.link_button("Baca Artikel", f"https://faizhalas-perpusdb.hf.space/reader?art={row['ID'].strip()}", icon="📄")
|
| 119 |
|
| 120 |
-
title = row[
|
| 121 |
title_query = title.replace(" ", "+")
|
| 122 |
scholar_url = f"https://scholar.google.com/scholar?hl=id&as_sdt=0%2C5&q={title_query}"
|
| 123 |
|
|
|
|
| 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 |
|
| 111 |
btn1, btn2, btn3, btn4 = st.columns(4)
|
| 112 |
popover1 = btn1.popover("Abstrak", icon="🔤", help="Klik untuk membaca abstrak dalam Bahasa Indonesia", use_container_width=False)
|
|
|
|
| 117 |
|
| 118 |
btn3.link_button("Baca Artikel", f"https://faizhalas-perpusdb.hf.space/reader?art={row['ID'].strip()}", icon="📄")
|
| 119 |
|
| 120 |
+
title = row['Title'].strip()
|
| 121 |
title_query = title.replace(" ", "+")
|
| 122 |
scholar_url = f"https://scholar.google.com/scholar?hl=id&as_sdt=0%2C5&q={title_query}"
|
| 123 |
|