Pd. Les paso el codigo que estoy usuando.
==============================
Archivo: run.py
==============================
Código:
==============================from juno import * @route('/') def index(web): archivos = [] for root,dirs,files in os.walk('/home/matias/archivos'): for file in [f for f in files if f.lower().endswith('jpg')]: archivos.append(os.path.join(root, file)) template('index.html', archivos=archivos) run()
Archivo: index.html
==============================
Código HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Prueba Archivos</title> </head> <body> <h2>Archivos de imagen encontrados:</h2> <ul> {% for arch in archivos %} <li> <!-- 'arch' es el path de los archivos, por Ejemplo puede ser '/home/matias/archivos/logo.jpg' --> <img src="{{arch}}" /> </li> {% endfor %} </ul> <!-- ACÁ INTENTE CARGAR UNA IMAGEN QUE TENGO EN EL MISMO LUGAR QUE TENGO EL HTML, PERO TAMPOCO FUNCIONÓ --> <img src="logo.jpg" /> </body> </html>
Estructura de Archivos
==============================
app
|-- run.py
`-- templates
|-- index.html
`-- logo.jpg
Saludos a todos y desde ya gracias!