diff --git a/_includes/base_path.html b/_includes/base_path.html
index 4f343af..28e2fe3 100644
--- a/_includes/base_path.html
+++ b/_includes/base_path.html
@@ -13,29 +13,26 @@
both 'site.url' and 'site.baseurl' are empty.
This case is handled by the last 'else' in the code below.
The logic there follows the (adapted) instructions found at:
- https://ricostacruz.com/til/relative-paths-in-jekyll
+https://ricostacruz.com/til/relative-paths-in-jekyll
- `page.url` gives the URL of the current page with a leading /:
+`page.url` gives the URL of the current page with a leading /:
- - when the URL ends with an extension (e.g., /foo/bar.html),
- we can get the 'depth' of the page by counting the number of
- forward slashes ('/') and subtracting 1
- - when the URL ends with a forward slash (e.g. /foo/bar/),
- we can get the depth of the page by counting the number of /
+- when the URL ends with an extension (e.g., /foo/bar.html),
+we can get the 'depth' of the page by counting the number of
+forward slashes ('/') and subtracting 1
+- when the URL ends with a forward slash (e.g. /foo/bar/),
+we can get the depth of the page by counting the number of /
{%- endcomment -%}
{% if site.url %}
- {% assign relative_root_path = site.baseurl %}
+{% assign relative_root_path = site.baseurl %}
{% else %}
- {% assign last_char = page.url | slice: -1 %}
- {% if last_char == "/" %}
- {% assign offset = 0 %}
- {% else %}
- {% assign offset = 1 %}
- {% endif %}
- {% assign depth = page.url | split: '/' | size | minus: offset %}
- {% if depth <= 1 %}{% assign relative_root_path = '.' %}
- {% elsif depth == 2 %}{% assign relative_root_path = '..' %}
- {% else %}{% capture relative_root_path %}..{% for i in (3..depth) %}/..{% endfor %}{% endcapture %}
- {% endif %}
+{% assign last_char = page.url | slice: -1 %}
+{% if last_char == "/" %}
+{% assign offset = 0 %}
+{% else %}
+{% assign offset = 1 %}
{% endif %}
+{% assign depth = page.url | split: '/' | size | minus: offset %}
+{% if depth <= 1 %}{% assign relative_root_path='.' %} {% else %}{% capture relative_root_path %}..{% for i in
+ (3..depth) %}/..{% endfor %}{% endcapture %} {% endif %} {% endif %}
\ No newline at end of file