14 lines
458 B
HTML
14 lines
458 B
HTML
|
{% extends "source/read_base.html" %}
|
||
|
|
||
|
{% block primary_content_inner %}
|
||
|
<section class="module-content">
|
||
|
<h1>{{ source.title or source.name }}</h1>
|
||
|
{% if source.notes %}
|
||
|
<p>{{ h.markdown_extract(source.notes)|urlize }}</p>
|
||
|
{% else %}
|
||
|
<p class="empty">{{ _('There is no description for this harvest source') }}</p>
|
||
|
{% endif %}
|
||
|
</section>
|
||
|
{% snippet "package/snippets/additional_info.html", pkg_dict=source %}
|
||
|
{% endblock %}
|