forked from prose/prose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.html
24 lines (22 loc) · 1.04 KB
/
app.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<% if (locale.current() === 'he-IL') { %>
<link rel='stylesheet' href='./style-rtl.css'>
<% } %>
<div id='loader' class='loader'></div>
<div id='drawer' class='sidebar' <% if (locale.current() === 'he-IL') { %>dir='rtl'<% } %>></div>
<nav id='navigation'></nav>
<div id='main' <% if (locale.current() === 'he-IL') { %>dir='rtl'<% } %>></div>
<div class='prose-menu dropdown-menu' <% if (locale.current() === 'he-IL') { %>dir='rtl'<% } %>>
<div class='inner clearfix'>
<a href='#' class='icon branding dropdown-hover' data-link=true>Prose</a>
<ul class='dropdown clearfix'>
<li><a href='#'>Prose</a></li>
<li><a class='about' href='#about'><%= t('navigation.about') %></a></li>
<li><a class='help' href='https://github.com/prose/prose'><%= t('navigation.develop') %></a></li>
<li><a href='#chooselanguage'><%= t('navigation.language') %></a></li>
<li class='divider authenticated'></li>
<li class='authenticated'>
<a href='#' class='logout'><%= t('navigation.logout') %></a>
</li>
</ul>
</div>
</div>