1234567891011121314151617181920212223242526 |
- {% comment %}
- {% include JB/file_exists file="/404.html" %}
- {% if file_exists_result %}{% else %}{% endif %}
- {% assign filename = "/405.html" %}
- {% include JB/file_exists file=filename %}
- {% if file_exists_result %}{{ filename }}{% else %}{{ filename }}{% endif %}
- {% endcomment %}
- {% assign file_exists_result = false %}
- {% if include.file %}
- {% for static_file in site.static_files %}
- {% if static_file.path == include.file %}
- {% assign file_exists_result = true %}
- {% break %}
- {% endif %}
- {% endfor %}
- {% endif %}
|