Simple list of links (blogroll)

URL: https://github.com/kplaube/django-simple-links

It allows you to create a blogroll section in your Django template with the following snippet:

{% load link_list %}

{% get_link_list "blogroll" as links, category %}

{% if links %}
    <section class="module">
        <h3 class="title">{{ category.title }}</h3>
        <ul>
            {% for link in links %}
                <li>
                    <a href="{{ link.href }}"
                        title="{{ link.description }}">{{ link.title }}</a>
                </li>
            {% endfor %}
        </ul>
    </section>
{% endif %}

The links are filled via Django Admin.

“Blogroll”… such a 2000’s thing :smiley:

Contributions are very welcome.