diff options
author | Vitaly Takmazov | 2021-03-31 00:44:49 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2021-03-31 00:44:49 +0300 |
commit | 93fe99d9bfc9ae00f4164ea0ba32290722dff4dd (patch) | |
tree | f0637a6ad99ae7033e2fee4d100ed1fc63e64728 /src/main/resources/templates/views/partial/navigation.html | |
parent | fbe50e415fbb3da5a7fa151338b00e6a94dc8d5d (diff) |
Resource filtering is handled by Spring Boot Maven plugin
Diffstat (limited to 'src/main/resources/templates/views/partial/navigation.html')
-rw-r--r-- | src/main/resources/templates/views/partial/navigation.html | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/src/main/resources/templates/views/partial/navigation.html b/src/main/resources/templates/views/partial/navigation.html new file mode 100644 index 00000000..184c8f2b --- /dev/null +++ b/src/main/resources/templates/views/partial/navigation.html @@ -0,0 +1,43 @@ +<div id="header"> + <div id="header_wrapper"> + {% if visitor.uid > 0 %} + <div id="ctitle"> + <a href="/{{ visitor.name }}/"> + <img src="{{ visitor.avatar }}" alt=""/>{{ visitor.name }} + {% if not visitor.verified %} + <span style="color: red;"><i data-icon="ei-exclamation" data-size="s"></i></span> + {% endif %} + </a> + </div> + {% else %} + <div id="logo"><a href="/{% if visitor.uid > 0 %}?show=my{% endif %}">Juick</a></div> + {% endif %} + <div id="search" class="desktop"> + <form action="/"> + <input name="search" class="text" + placeholder="{{ i18n('messages','label.search') }}" value="{{ search | default('') }}"/> + </form> + </div> + <nav id="global"> + <a href="/"> + <i data-icon="ei-bell" data-size="s"></i> + <span class="icon-title desktop">{{ i18n("messages","link.discuss") }}</span>{% if visitor.unreadCount > 0 %}<span class="badge">{{ visitor.unreadCount }}</span>{% endif %} + </a> + <a href="/?show=all" rel="nofollow"> + <i data-icon="ei-search" data-size="s"></i> + <span class="icon-title desktop">{{ i18n("messages","link.allMessages") }}</span> + </a> + {% if visitor.uid > 0 %} + <a id="post" href="/post"> + <i data-icon="ei-pencil" data-size="s"></i> + <span class="icon-title desktop">{{ i18n("messages","link.postMessage") }}</span> + </a> + {% else %} + <a class="a-login" href="/login" rel="nofollow"> + <i data-icon="ei-user" data-size="s"></i> + <span class="icon-title desktop">{{ i18n("messages", "link.Login") }}</span> + </a> + {% endif %} + </nav> + </div> +</div> |