DEV Community

sunj
sunj

Posted on

Flask template

#html
#endif, endfor사용

<!doctype html>
<title>Hello from Flask</title>
{% if name %}
  <h1>Hello {{ name }}!</h1>
{% else %}
  <h1>Hello World!</h1>
{% endif %}
Enter fullscreen mode Exit fullscreen mode

참조 : https://flask-docs-kr.readthedocs.io/ko/latest/quickstart.html#id6

Top comments (0)