Files
website-v2/templates/libraries/includes/_documentation_link_icon.html
2025-10-17 13:14:07 -07:00

8 lines
383 B
HTML

{% load doc_url_with_latest %}
{% if library_version.documentation_url %}
<a class="text-sky-600 dark:text-sky-300 hover:text-orange dark:hover:text-orange text-base block py-3 text-center" href="{% doc_url_with_latest library_version.documentation_url version_str LATEST_RELEASE_URL_PATH_STR %}" title="Documentation">
<i class="fa fa-book align-top"></i>
</a>
{% endif %}