Skip to content

Instantly share code, notes, and snippets.

@jakefentress
Created February 19, 2014 19:39
Show Gist options
  • Save jakefentress/9099930 to your computer and use it in GitHub Desktop.
Save jakefentress/9099930 to your computer and use it in GitHub Desktop.
Relative links in Jekyll
{% capture lvl %}{{ page.url | append:'index.html' | split:'/' | size }}{% endcapture %}
{% capture relative %}{% for i in (3..lvl) %}../{% endfor %}{% endcapture %}
{% comment %} note the {{ relative }} tag in the URL below {% endcomment %}
<link rel='stylesheet' href='{{ relative }}css/screen.css'>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment