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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
teaser
If site.teaser is left blank in _config.yml unspecified teaser images in archive-single.html grid type should be blank.
site.teaser
_config.yml
archive-single.html
Previously {% if include.type == "grid" and teaser != blank %} condition worked to check if site teaser had been assigned.
{% if include.type == "grid" and teaser != blank %}
The text was updated successfully, but these errors were encountered:
3e2e7da
Fix blank site.teaser bug
1510d52
- Use `assign` instead of capture and then check if variable is `nil` or not. - Close #412
9bbc492
- Use `assign` instead of capture and then check if variable is `nil` or not. - Close mmistakes#412
e534807
mmistakes
No branches or pull requests
If
site.teaser
is left blank in_config.yml
unspecified teaser images inarchive-single.html
grid type should be blank.Previously
{% if include.type == "grid" and teaser != blank %}
condition worked to check if site teaser had been assigned.The text was updated successfully, but these errors were encountered: