Backlinks
{% if page.lang == 'it' %}
Le pagine del sito che contengono un link a questa pagina.
Curioso riguardo cosa voglia dire? Leggi questo articolo.
{% else %}
All the pages of this website containing a link to the current page.
Curious about what this means? Check this article.
{% endif %}
{% comment %}+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ +
+ 100% Liquid backlinks parser based on pages permalinks. +
+ +
++++++++++++++++++++++++++++++++++++++++++++++++++++++++{% endcomment %}
{% capture current_url %}{{ page.url }}{% endcapture %}
{% capture current_url_downcase %}{{ page.url | downcase }}{% endcapture %}
{% for entry in site.pages %}
{% unless entry.url contains '.json' or entry.url contains '.csv' or entry.url contains '.css' or entry contains '.txt' %}
{% if entry.content contains page.url or entry.content contains current_url_downcase %}
-
{{ entry.title }}
{% if entry.description %}
- {{ entry.description }}
{% else %}
- {{ entry.excerpt | strip_html | truncatewords: 30 }}
{% endif %}
{% endif %}
{% for redirect in page.redirect_from | split '/' %}
{% capture redirect_ %}/{{ redirect }}{% endcapture %}
{% if entry.content contains redirect_ %}
-
{{ entry.title }}
{% if entry.description %}
- {{ entry.description }}
{% else %}
- {{ entry.excerpt | strip_html | truncatewords: 30 }}
{% endif %}
{% endif %}
{% endfor %}
{% endunless %}
{% endfor %}
{% for collection in site.collections %}
{% assign collection_name = collection.label %}
{% for entry in site.[collection_name] %}
{% if entry.content contains page.url or entry.content contains current_url_downcase %}
{% case collection_name %}
{% when 'jar' %}
- 🍯 {{ entry.title }} - {% if entry.description %}{{ entry.description }}{% else %}{{ entry.excerpt | strip_html | truncatewords: 30 }}{% endif %}
{% when 'sconnesso' %}
- 🎙️ {{ entry.title }}
{% when 'posts' %}
- 📖 {{ entry.title }}
{% when 'filinge' %}
- 💭 {{ entry.title }}
{% else %}
- {{ entry.title }} - {{ entry.excerpt | strip_html | truncatewords: 30 }}
{% endcase %}
{% endif %}
{% for redirect in page.redirect_from | split '/' %}
{% capture redirect_ %}/{{ redirect }}{% endcapture %}
{% if entry.content contains redirect_ %}
{% case collection_name %}
{% when 'jar' %}
- 🍯 {{ entry.title }} - {% if entry.description %}{{ entry.description }}{% else %}{{ entry.excerpt | strip_html | truncatewords: 30 }}{% endif %}
{% when 'sconnesso' %}
- 🎙️ {{ entry.title }}
{% when 'posts' %}
- 📖 {{ entry.title }}
{% when 'filinge' %}
- 💭 {{ entry.title }}
{% else %}
- {{ entry.title }} - {{ entry.description }}
{% endcase %}
{% endif %}
{% endfor %}
{% endfor %}
{% endfor %}