more commits..
This commit is contained in:
parent
6dda02141e
commit
7823be6481
20 changed files with 1835 additions and 631 deletions
24
app/templates/components/mobile_menu.html
Normal file
24
app/templates/components/mobile_menu.html
Normal file
|
@ -0,0 +1,24 @@
|
|||
<!-- Mobile Floating Action Button and Menu -->
|
||||
<div class="mobile-fab" id="mobile-fab">
|
||||
<i class="fas fa-bars"></i>
|
||||
</div>
|
||||
|
||||
<div class="mobile-menu" id="mobile-menu">
|
||||
<a href="{{ url_for('dashboard.index') }}" class="mobile-menu-item">
|
||||
<i class="fas fa-tachometer-alt"></i> Dashboard
|
||||
</a>
|
||||
<a href="{{ url_for('files.browser') }}" class="mobile-menu-item">
|
||||
<i class="fas fa-folder"></i> My Files
|
||||
</a>
|
||||
<a href="{{ url_for('files.upload') }}" class="mobile-menu-item">
|
||||
<i class="fas fa-upload"></i> Upload
|
||||
</a>
|
||||
{% if current_user.is_admin %}
|
||||
<a href="{{ url_for('admin.index') }}" class="mobile-menu-item">
|
||||
<i class="fas fa-cog"></i> Admin
|
||||
</a>
|
||||
{% endif %}
|
||||
<a href="{{ url_for('auth.logout') }}" class="mobile-menu-item">
|
||||
<i class="fas fa-sign-out-alt"></i> Logout
|
||||
</a>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue