added Stufff

This commit is contained in:
2025-06-23 16:52:42 +02:00
parent f1fe4aa05a
commit d9b50ac103
18 changed files with 564 additions and 266 deletions

14
templates/notebook.html Normal file
View File

@@ -0,0 +1,14 @@
{% 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 %}