mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-07-16 06:58:56 +00:00
11 lines
No EOL
454 B
Twig
11 lines
No EOL
454 B
Twig
<ul class="related-pages">
|
|
{% for related_path, score in related_pages %}
|
|
{% set related = grav['pages'].get(related_path) %}
|
|
{% if related %}
|
|
<li>
|
|
<a href="{{ related.url }}" title="{{ related.title }}">{{ related.title }}</a> {% if config.plugins.relatedpages.show_score %}<span class="score">( {{ score }} )</span>
|
|
{% endif %}
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul> |