22 lines
757 B
HTML
22 lines
757 B
HTML
<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>
|