aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/yahoo/yahoo_httplib.c
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/yahoo/yahoo_httplib.c')
0 files changed, 0 insertions, 0 deletions
fix/0.19.0.1'>hotfix/0.19.0.1 Unnamed repository; edit this file 'description' to name the repository.MimesBrønn
aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/general/_responsive_header.html.erb
blob: 3a2994b4d57ce8b4f753013b83510616a3184179 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<div id="banner">
  <div id="banner_inner">
    <div id="banner_content">
      <div id="logo_wrapper">
        <%= link_to image_tag('logo.png'), frontpage_path, :id => 'logo' %>
      </div>
      <div class="rsp_menu_button">
        <a href="#banner" class="open"> <i class="icon-menu"></i> Menu </a>
        <a href="#" class="close"> <i class="icon-menu"></i> Close </a>
      </div>
      <%= render :partial => 'general/locale_switcher' %>
      <% if ! (controller.action_name == 'signin' or controller.action_name == 'signup') %>
        <div id="logged_in_bar">
          <div id="logged_in_links">
          <% if @user %>
            <span class="greeting"><%= _('Hello, {{username}}!', :username => @user.name) %></span>
            <%=link_to _("My requests"), show_user_requests_path(:url_name => @user.url_name) %>
            <%=link_to _("My profile"), show_user_profile_path(:url_name => @user.url_name) %>
            <%=link_to _("My wall"), show_user_wall_path(:url_name => @user.url_name) %>
            <%= link_to _("Sign out"), signout_path(:r => request.fullpath) %>
          <% else %>
               <%= link_to _("Sign in or sign up"), signin_path(:r => request.fullpath) %>
          <% end %>
          </div>
        </div>
      <% end %>
    </div>
    <%= render :partial => 'general/responsive_topnav' %>
  </div>
</div>