prettier-plugin-askama-temp.../test/cases/statement_if_else/input.html

9 lines
203 B
HTML
Raw Normal View History

2022-11-18 22:05:06 +03:00
<body>
{% if href in ['layout.html', 'index.html, 'about.html', 'user.html'] %}
<h1>{{title}}</h1>
{%else if href == "random.html" %}
<h2>{{title}}</h2>
{%else%}
<h3>{{title}}</h3>
{% endif %}
</body>