Untitled
unknown
html
3 years ago
304 B
7
Indexable
<!DOCTYPE html>
<html>
<head>
<title>Flask If Statement Example</title>
</head>
<body>
{% if condition %}
<h1>This content will be shown if the condition is true</h1>
{% else %}
<h1>This content will be shown if the condition is false</h1>
{% endif %}
</body>
</html>
Editor is loading...