28 lines
661 B
HTML
28 lines
661 B
HTML
|
{% extends "base.html" %}
|
||
|
{% block content %}
|
||
|
<!-- Directories -->
|
||
|
{% if directories %}
|
||
|
<div class="row">
|
||
|
<h3><i class="fas fa-folder"></i> Directories</h3>
|
||
|
|
||
|
{% for dir in directories %}
|
||
|
{% include '_folder.html' %}
|
||
|
{% endfor %}
|
||
|
|
||
|
</div>
|
||
|
|
||
|
<hr />
|
||
|
{% endif %}
|
||
|
|
||
|
<!-- Notebooks -->
|
||
|
{% if notebooks %}
|
||
|
<div class="row">
|
||
|
<h3><i class="fas fa-file-code"></i> Notebooks</h3>
|
||
|
{% for notebook in notebooks %}
|
||
|
{% include '_notebook.html' %}
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
{% endblock %}
|
||
|
|