from flask import Flask, render_template

app = Flask(__name__)

@app.route('/')
def home():
    # Data to send to the HTML
    user_name = "Alice"
    fruit_list = ["Apple", "Mango"]
    
    # Rendering the template and passing the data
    return render_template("index.html", name=user_name, fruits=fruit_list)