Question 17
Consider the following flask app and Jinja2 template.
app.py
from flask import Flask, render_templateapp = Flask(__name__)
@app.route('/')def index(): return render_template("index.html", data=['Harry', 'Karl', 'John','Jason', 'Ros'])
app.run()index.html
<!DOCTYPE html><html lang="en"><head> <title>Macro</title></head><body> {% macro unordered_list(items)%} <ul> {% for item in items %} {% if item|length >= 5 %} <li>{{item}}</li> {% endif %} {% endfor %} </ul> {% endmacro %} {{ unordered_list(data) }}</body></html>If the flask app is running locally on http://127.0.0.1:5000. What will be the output on the browser for the base URL?