this repo has no description
1{% macro extended_footer() %}
2 <div class="rings">
3 <details>
4 <summary>Webrings</summary>
5 <ul>
6 {%- for ring in config.extra.webrings -%}
7 <li>
8 <a href="{{ ring.url }}/prev?referrer={{ get_url(path = "/") | safe }}">«</a>
9 <a href="{{ ring.url }}">{{ ring.name }}</a>
10 <a href="{{ ring.url }}/next?referrer={{ get_url(path = "/") | safe }}">»</a>
11 </li>
12 {%- endfor -%}
13 </ul>
14 </details>
15 </div>
16{% endmacro extended_footer %}