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

{% translate 'Daily Links' %}

{% translate '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 %}
{% if data.title %}{{ data.title }}{% else %}{{ data.url }}{% endif %}
{% else %} {# it is a note #}
{{ data.title }}
{% endif %} {% if data.image %} {% endif %} {% if data.video %}
{% endif %}
{{ data.text | wrap_markdown |safe }}
{% endfor %}
{% endblock %}