X-Git-Url: http://git.purplebirdman.com/web-gallery.git/blobdiff_plain/77fb873efda5c6a60d8d05efad1e349db57044a9..d731a2bad30aaec2e1f1d63e2bb57062e1ccd503:/app/app.py diff --git a/app/app.py b/app/app.py index c4d55bd..86cbf79 100644 --- a/app/app.py +++ b/app/app.py @@ -3,5 +3,6 @@ from flask import Flask, render_template app = Flask(__name__) @app.route('/') -def customer(): - return render_template('hello.html') +def render_gallery(): + items = ['LittleWilly', 'foo', 'bar'] + return render_template( 'gallery.html', gallery_items=items )