11 lines
274 B
HTML
11 lines
274 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
{% if page.nb_url %}
|
|
<a href="{{ page.nb_url }}" title="Download Notebook" class="md-content__button md-icon">
|
|
{% include ".icons/material/download.svg" %}
|
|
</a>
|
|
{% endif %}
|
|
|
|
{{ super() }}
|
|
{% endblock content %}
|