I try to return html code as variable. What am I doing wrong?
python:
return render_template("dashboard.html", services = "<h1>Service 1</h1>")
html:
Your services: {{services}}
But it gives the services value as text:
Your services: <h1>Service 1</h1>"