JupyShare/templates/_notebook.html

22 lines
757 B
HTML
Raw Permalink Normal View History

2025-06-23 16:52:42 +02:00
<div class="card-container">
<div class="card">
<a href="{{ url_for('view_notebook', notebook_path=notebook.path) }}" class="a">
<i class="fas fa-file-code"></i> {{ notebook.name }}
</a>
<div class="buttons">
<div class="card-stats">
<p>Last Modified: <strong>{{ notebook.modified }}</strong></p>
<p>Size: <strong>{{ notebook.size }} KB</strong></p>
</div>
{% if config.ENABLE_DOWNLOAD %}
<a href="{{ url_for('download_notebook', notebook_path=notebook.path) }}" class="button download-button">
<i class="fas fa-download"></i> Download
</a>
{% endif %}
</div>
</div>
</div>