Untitled

 avatar
unknown
html
2 years ago
304 B
6
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...