Dashboard Temp Share Shortlinks Frames API

HTMLify

nav-bar.html
Views: 464 | Author: abh
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
<div class="links">
	<a href="/">Home</a>
	{% if not session.get("user") %}
    <a href="/login">Log in</a>
    <a href="/registration">Register</a>
    {% else %}
    <a href="/action/logout">Log out</a>
    <a href="/notifications" >Notifications
    {% if session["user"]["notifications"] > 0 %}
    <!--<sup style="color:white;background-color:#ff5511;border-radius:50%;">{{ session["user"]["notifications"] }}</sup>-->
    <sup style="color:white; background-color:#ff5511; border-radius:50%; padding: 2px 5px;">
    {{ session["user"]["notifications"] }}
    </sup>
    {% endif %}
    </a>
    {% endif %}
    <a href="/dashboard">Dashboard</a>
</div>