Skip to content
This repository has been archived by the owner on Oct 16, 2019. It is now read-only.

Latest commit

 

History

History
31 lines (20 loc) · 429 Bytes

debug.md

File metadata and controls

31 lines (20 loc) · 429 Bytes
layout title permalink
page
Debug page
/debug/




{% assign my_variable = false %} {% if my_variable != true %} This statement is valid. {% endif %}

{% assign my_variable = true %} {% if my_variable == true %} This statement is in valid. {% endif %}

{% for file in site.static_files %}

{% if file.path contains "logo-ecell.png" %} {{file.path}} {% endif %}

{% endfor %}