We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing snippets are:
set
with
Note that set can be used as
{% set a = 'Hello, bear!' %}
as well as
{% set a %}Hello, bear!{% endset %}
with also has 2 forms. First version syntax is
{% with a='Hello, bear!' %}{% endwith %}
and the second one (scope restricting) is
{% with %} {% set a='Hello, bear!' %} {% endwith %}
The text was updated successfully, but these errors were encountered:
👍
while you're at it get include in there too
include
Sorry, something went wrong.
Are you still planning on implementing these snippets?
Missing snippets:
{% set foo = 42 %} {% set navigation %} <li><a href="/">Index</a> <li><a href="/downloads">Downloads</a> {% endset %}
{% with foo = 42 %} {{ foo }} {% endwith %} {% with %} {% set foo = 42 %} {{ foo }} {% endwith %}
{% include 'header.html' %}
Thank you in advance
No branches or pull requests
Missing snippets are:
set
with
set
Note that
set
can be used asas well as
with
with
also has 2 forms.First version syntax is
and the second one (scope restricting) is
The text was updated successfully, but these errors were encountered: