2013-07-02 08:46:44 +00:00
|
|
|
<ul class="nav" role="navigation">
|
|
|
|
|
|
|
|
<!-- menu -->
|
|
|
|
<li id="orbit-start" class="dropdown">
|
|
|
|
<a class="orbitlogo" href="#" role="button" class="dropdown-toggle" data-toggle="dropdown"></a>
|
|
|
|
<ul class="dropdown-menu" role="menu" aria-labelledby="orbit-start">
|
|
|
|
<li><%= link_to content_tag(:i, nil, :class => 'icons-gauge') + ' ' + t(:dashboard_), admin_dashboards_path, tabindex: '-1' %></li>
|
|
|
|
<li><%= link_to content_tag(:i, nil, :class => 'icons-users') + ' ' + t(:member_), admin_users_new_interface_index_path, tabindex: '-1' %></li>
|
|
|
|
<% if (is_admin? rescue false) %>
|
|
|
|
<li class="divider"></li>
|
2013-07-22 08:31:44 +00:00
|
|
|
<li><%= link_to content_tag(:i, nil, :class => 'icons-cog') + ' ' + t('site.settings'), admin_items_path, tabindex: '-1' %></li>
|
2013-07-02 08:46:44 +00:00
|
|
|
<% end %>
|
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<!-- home -->
|
|
|
|
<li id="orbit-home">
|
|
|
|
<a href="<%= root_path %>" role="button">
|
|
|
|
<i class="icons-house"></i> <span class="hide"><%= t(:homepage) %></span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<!-- Desktop -->
|
2013-11-04 07:41:23 +00:00
|
|
|
<% if @site.desktop_closed%>
|
2013-07-02 08:46:44 +00:00
|
|
|
<li id="orbit-desktop">
|
|
|
|
<a href="<%= desktop_path %>" role="button">
|
|
|
|
<i class="icons-screen"></i> <span class="hide"><%= t(:desktop) %></span>
|
|
|
|
</a>
|
|
|
|
</li>
|
2013-10-18 07:24:28 +00:00
|
|
|
<% end %>
|
2013-07-02 08:46:44 +00:00
|
|
|
|
2013-10-14 10:19:31 +00:00
|
|
|
</ul>
|
2013-10-16 10:48:21 +00:00
|
|
|
<% if @site.default_image.present?%>
|
2013-10-14 10:19:31 +00:00
|
|
|
<style>
|
|
|
|
#orbit-bar .orbitlogo {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
background-size: 70%;
|
|
|
|
display: inline-block;
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-image: url(<%= @site.default_image %>);
|
|
|
|
/* For Suck IE */
|
|
|
|
background-image: url(<%= @site.default_image%>)\9;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<% end %>
|