{% extends "base.html" %}
{% block content %}
{% if page.nb_url %}
{% include ".icons/material/download.svg" %}
{% endif %}
{% if page.file.src_uri %}
{% if page.file.src_uri.endswith('.ipynb') %}
{% include ".icons/material/play-circle-outline.svg" %}
{% endif %}
{% endif %}
{{ super() }}
{% endblock content %}