Build a beautiful and simple website in literally minutes. Demo at http://deanattali.com/beautiful-jekyll
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
571 B

  1. {% capture before %}{{ include.link[1] | split: "://" | first }}{% endcapture %}
  2. {% capture after %}{{ include.link[1] | split: "://" | last }}{% endcapture %}
  3. {% assign internal = true %}
  4. {% if before != after %}
  5. {% if before == "http" or before == "https" %}
  6. {% assign internal = false %}
  7. {% endif %}
  8. {% endif %}
  9. {% if internal %}
  10. {% capture linkurl %}{{ site.baseurl }}/{{ include.link[1] }}{% endcapture %}
  11. {% else %}
  12. {% capture linkurl %}{{ include.link[1] }}{% endcapture %}
  13. {% endif %}
  14. <a href="{{ linkurl }}">{{ include.link[0] }}</a>