human commit

This commit is contained in:
Set Hallstrom 2019-02-28 17:06:17 +01:00
parent d891906702
commit f938333ff3
366 changed files with 81971 additions and 0 deletions

View file

@ -0,0 +1,8 @@
{% assign base = '' %}
{% assign depth = page.url | split: '/' | size %}
{% if depth <= 1 %}{% assign base = '.' %}
{% elsif depth == 2 %}{% assign base = '.' %}
{% elsif depth == 3 %}{% assign base = '..' %}
{% elsif depth == 4 %}{% assign base = '../..' %}
{% elsif depth == 5 %}{% assign base = '../../..' %}
{% elsif depth == 6 %}{% assign base = '../../../..' %}{% endif %}