~linuxgoose/bocpress

ref: 7aed0b0bd7c12e24d98cc947655f01325566f967 bocpress/main/templates/partials/webring.html -rw-r--r-- 691 bytes
7aed0b0bJordan Robinson update readme 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 %}