added Stufff
This commit is contained in:
27
templates/index.html
Normal file
27
templates/index.html
Normal file
@@ -0,0 +1,27 @@
|
||||
{% 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 %}
|
||||
|
Reference in New Issue
Block a user