Sfoglia il codice sorgente

Moved userbar to top of page; removed redundant commented block

master
CharlotteGilhooly 12 anni fa
parent
commit
95f9b8e691
1 ha cambiato i file con 7 aggiunte e 9 eliminazioni
  1. +7
    -9
      app/views/layouts/application.html.haml

+ 7
- 9
app/views/layouts/application.html.haml Vedi File

@@ -8,6 +8,13 @@

%body
#userbar
- if current_user
Logged in as
= current_user.email
= link_to "Log out", logout_path
- if notice
%p#notice= notice

@@ -16,15 +23,6 @@
= link_to(image_tag("TAL_logo_blue-h100.png", :size => "275x100", :alt => "Talk About Local logo"), :root, :class => "logo")
#userbar
- if current_user
Logged in as
= current_user.email
= link_to "Log out", logout_path
- else
-#
= link_to "Log in", login_path
= yield



Caricamento…
Annulla
Salva