sidebar.html 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <div class="sidebar">
  2. <!--
  3. Tip 1: You can change the color of the sidebar using: data-color="blue | green | orange | red"
  4. -->
  5. <div class="sidebar-wrapper">
  6. <div class="logo">
  7. <a href="javascript:void(0)" class="simple-text logo-mini">
  8. MS
  9. </a>
  10. <a href="javascript:void(0)" class="simple-text logo-normal">
  11. Markus Spring
  12. </a>
  13. </div>
  14. <ul class="nav">
  15. <li class="{% if 'index' in segment %} active {% endif %} ">
  16. <a href="/">
  17. <i class="tim-icons icon-chart-pie-36"></i>
  18. <p>Charts</p>
  19. </a>
  20. </li>
  21. <li class="{% if 'user' in segment %} active {% endif %}">
  22. <a href="/table">
  23. <i class="tim-icons icon-single-02"></i>
  24. <p>Touren-Tabelle</p>
  25. </a>
  26. </li>
  27. <li class="{% if 'icons' in segment %} active {% endif %}">
  28. <a href="/icons.html">
  29. <i class="tim-icons icon-atom"></i>
  30. <p>Icons</p>
  31. </a>
  32. </li>
  33. <!-- <li class="{% if 'map' in segment %} active {% endif %}"> -->
  34. <!-- <a href="/map.html"> -->
  35. <!-- <i class="tim-icons icon-pin"></i> -->
  36. <!-- <p>Maps</p> -->
  37. <!-- </a> -->
  38. <!-- </li> -->
  39. <li class="{% if 'notifications' in segment %} active {% endif %}">
  40. <a href="/notifications.html">
  41. <i class="tim-icons icon-bell-55"></i>
  42. <p>Notifications</p>
  43. </a>
  44. </li>
  45. <li class="{% if 'tables' in segment %} active {% endif %}">
  46. <a href="/tables.html">
  47. <i class="tim-icons icon-puzzle-10"></i>
  48. <p>Table List</p>
  49. </a>
  50. </li>
  51. <li class="{% if 'typography' in segment %} active {% endif %}">
  52. <a href="/typography.html">
  53. <i class="tim-icons icon-align-center"></i>
  54. <p>Typography</p>
  55. </a>
  56. </li>
  57. <!-- <li> -->
  58. <!-- <a href="/rtl.html"> -->
  59. <!-- <i class="tim-icons icon-world"></i> -->
  60. <!-- <p>RTL Support</p> -->
  61. <!-- </a> -->
  62. <!-- </li> -->
  63. <li>
  64. <a href="{{ url_for('authentication_blueprint.logout') }}">
  65. <i class="tim-icons icon-button-power"></i>
  66. <p>Logout</p>
  67. </a>
  68. </li>
  69. </ul>
  70. </div>
  71. </div>