Spaces:
Sleeping
Sleeping
File size: 476 Bytes
547d83c |
1 2 3 4 5 6 7 8 9 10 11 12 |
{% set base_url = "http://127.0.0.1:7860/?" %}
{% set encoded_urls = [] %}
{% for i, url in enumerate(image_urls) %}
{% set encoded_urls = encoded_urls + [ "img" ~ loop.index ~ "=" ~ url | urlencode ] %}
{% endfor %}
{% set full_url = base_url + encoded_urls | join("&") %}
# Image Gallery
<iframe src="{{ full_url }}" width="1000" height="1000" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> |