aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/layouts/_base.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/layouts/_base.html.haml')
-rw-r--r--app/views/layouts/_base.html.haml21
1 files changed, 21 insertions, 0 deletions
diff --git a/app/views/layouts/_base.html.haml b/app/views/layouts/_base.html.haml
new file mode 100644
index 0000000..eab9eb2
--- /dev/null
+++ b/app/views/layouts/_base.html.haml
@@ -0,0 +1,21 @@
+!!! xml
+%html{xmlns: "http://www.w3.org/1999/xhtml"}
+ %head
+ %title= @title
+ = stylesheet_link_tag "application"
+ %body
+ .navbar.navbar-static-top
+ .navbar-inner
+ .container
+ .brand
+ = link_to "aclog", :controller => "main", :action => "index"
+ %ul.nav.pull-right
+ %li
+ = link_to "about", :controller => "main", :action => "about"
+ - if session[:screen_name]
+ %li= link_to "logout", :controller => "sessions", :action => "destroy"
+ %li= link_to "@#{session[:screen_name]}", :controller => "users", :action => "best", :screen_name => session[:screen_name]
+ - else
+ %li= link_to "login", "/i/login"
+ .container
+ = yield