~linuxgoose/bocpress

ref: 41c863a31c1d409617a61ace48c4c2dff4ad6d14 bocpress/main/templates/partials/webring.html -rw-r--r-- 691 bytes
41c863a3Jordan Robinson update footer to include link to docs site 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% if blog_user.webring_prev_url or blog_user.webring_url or blog_user.webring_next_url %}
<section class="webring">
    {% if blog_user.webring_prev_url %}
    <a href="{{ blog_user.webring_prev_url }}">← Previous</a>
    {% endif %}
    <div>
        {% if blog_user.webring_url %}<a href="{{ blog_user.webring_url }}" class="webring-name">
            {{ blog_user.webring_name|default_if_none:'Webring' }}
        </a>
        {% else %}
        {{ blog_user.webring_name|default_if_none:'' }}
        {% endif %}
    </div>
    {% if blog_user.webring_next_url %}
    <a href="{{ blog_user.webring_next_url }}">Next →</a>
    {% endif %}
</section>
{% endif %}