{% extends "base.html" %} {% load i18n %} {% load shaarpy_extras %} {% block title %}{{ SHAARPY_NAME }} :: {% trans 'Daily Links' %}{% endblock %} {% block og_title %}{% trans 'Daily Links' %}{% endblock %} {% block content %}

{% trans 'Daily Links' %}

{% trans 'list of the links of the day' %}

{% if previous_date %} {{ previous_date }}{% endif %} 
{{ current_date|date:"DATE_FORMAT" }}
{% if next_date %} {{ next_date }} {% endif %}
{% for data in object_list %}
{% if data.url %}
{{ data.title }}
{% else %} {# it is a note #}
{{ data.title }}
{% endif %} {% if data.image %} {% endif %} {% if data.video %}
{% endif %}
{{ data.text | markdown |safe }}
{% endfor %}
{% endblock %}