JupyShare/templates/notebook.html
2025-06-23 16:52:42 +02:00

15 lines
493 B
HTML

{% extends 'base.html' %}
{% block content %}
<div class="notebook-header">
<h2>
<i class="fas fa-file-code text-primary"></i> {{ notebook_name }}
</h2>
{% if config.ENABLE_DOWNLOAD %}
<a href="{{ url_for('download_notebook', notebook_path=notebook_path) }}" class="a button download-button">
<i class="fas fa-download"></i> Download
</a>
{% endif %}
</div>
{{ html_content|safe }}
{% endblock %}