added Stufff
This commit is contained in:
14
templates/notebook.html
Normal file
14
templates/notebook.html
Normal 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 %}
|
Reference in New Issue
Block a user