Skip to content
Snippets Groups Projects
print_number.liquid 241 B
Newer Older
  • Learn to ignore specific revisions
  • Tom Wiesing's avatar
    Tom Wiesing committed
    {% if value == null %}
      {% assign value = site.defaults[0].values["menu_order"] %}
    {% endif %}
    
    {% if value < 10 %}0{% endif %}
    {% if value < 100 %}0{% endif %}
    {% if value < 1000 %}0{% endif %}
    {% if value < 10000 %}0{% endif %}
    
    {{value}}