Codebase Update

This commit is contained in:
App Generator
2023-06-06 11:03:31 +03:00
parent 3e51831eab
commit 40a4fe974f
231 changed files with 35693 additions and 125 deletions

View File

@ -0,0 +1,72 @@
<div class="sidebar">
<!--
Tip 1: You can change the color of the sidebar using: data-color="blue | green | orange | red"
-->
<div class="sidebar-wrapper">
<div class="logo">
<a href="javascript:void(0)" class="simple-text logo-mini">
CT
</a>
<a href="javascript:void(0)" class="simple-text logo-normal">
Creative Tim
</a>
</div>
<ul class="nav">
<li class="{% if 'index' in segment %} active {% endif %} ">
<a href="/">
<i class="tim-icons icon-chart-pie-36"></i>
<p>Dashboard</p>
</a>
</li>
<li class="{% if 'user' in segment %} active {% endif %}">
<a href="/user.html">
<i class="tim-icons icon-single-02"></i>
<p>User Profile</p>
</a>
</li>
<li class="{% if 'icons' in segment %} active {% endif %}">
<a href="/icons.html">
<i class="tim-icons icon-atom"></i>
<p>Icons</p>
</a>
</li>
<li class="{% if 'map' in segment %} active {% endif %}">
<a href="/map.html">
<i class="tim-icons icon-pin"></i>
<p>Maps</p>
</a>
</li>
<li class="{% if 'notifications' in segment %} active {% endif %}">
<a href="/notifications.html">
<i class="tim-icons icon-bell-55"></i>
<p>Notifications</p>
</a>
</li>
<li class="{% if 'tables' in segment %} active {% endif %}">
<a href="/tables.html">
<i class="tim-icons icon-puzzle-10"></i>
<p>Table List</p>
</a>
</li>
<li class="{% if 'typography' in segment %} active {% endif %}">
<a href="/typography.html">
<i class="tim-icons icon-align-center"></i>
<p>Typography</p>
</a>
</li>
<li>
<a href="/rtl.html">
<i class="tim-icons icon-world"></i>
<p>RTL Support</p>
</a>
</li>
<li>
<a href="{{ url_for('authentication_blueprint.logout') }}">
<i class="tim-icons icon-button-power"></i>
<p>Logout</p>
</a>
</li>
</ul>
</div>
</div>