Spaces:
Sleeping
Sleeping
seawolf2357
commited on
Commit
โข
3a21b5c
1
Parent(s):
b89f74f
Update app.py
Browse files
app.py
CHANGED
@@ -199,9 +199,9 @@ if selected_menu == "Home":
|
|
199 |
]
|
200 |
|
201 |
# ์ด๋ฏธ์ง๋ค์ ํ ์ค์ 4์ฅ์ฉ ๋ฐฐ์น
|
202 |
-
for i in range(0, len(image_files),
|
203 |
-
cols = st.columns(
|
204 |
-
for col, img_file, img_text in zip(cols, image_files[i:i+
|
205 |
with col:
|
206 |
st.image(img_file, use_column_width=True)
|
207 |
st.caption(img_text)
|
|
|
199 |
]
|
200 |
|
201 |
# ์ด๋ฏธ์ง๋ค์ ํ ์ค์ 4์ฅ์ฉ ๋ฐฐ์น
|
202 |
+
for i in range(0, len(image_files), 3):
|
203 |
+
cols = st.columns(3) # 4๊ฐ์ ์ด ์์ฑ
|
204 |
+
for col, img_file, img_text in zip(cols, image_files[i:i+3], image_texts[i:i+3]):
|
205 |
with col:
|
206 |
st.image(img_file, use_column_width=True)
|
207 |
st.caption(img_text)
|