summaryrefslogtreecommitdiff
path: root/app/views/layouts/application.html.haml
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2012-08-10 18:07:50 -0400
committerRobert Speicher <rspeicher@gmail.com>2012-08-10 18:25:15 -0400
commit775418918782d5284000ed0bfea364458c748567 (patch)
treec31e3633a3bcbed17b000f0165cf35edad41f7ca /app/views/layouts/application.html.haml
parent1413c23c502d5a5cbc9b81f553a245103c1d6e50 (diff)
downloadgitlab-ce-775418918782d5284000ed0bfea364458c748567.tar.gz
Fully embrace Ruby 1.9 hash syntax
Didn't bother with files in db/, config/, or features/
Diffstat (limited to 'app/views/layouts/application.html.haml')
-rw-r--r--app/views/layouts/application.html.haml8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/views/layouts/application.html.haml b/app/views/layouts/application.html.haml
index 0d5d829e00d..dda10d5d137 100644
--- a/app/views/layouts/application.html.haml
+++ b/app/views/layouts/application.html.haml
@@ -1,10 +1,10 @@
!!! 5
-%html{ :lang => "en"}
+%html{ lang: "en"}
= render "layouts/head"
- %body{:class => "#{app_theme} application"}
+ %body{class: "#{app_theme} application"}
= render "layouts/flash"
- = render "layouts/head_panel", :title => "Dashboard"
+ = render "layouts/head_panel", title: "Dashboard"
.container
- = render :partial => "layouts/app_menu"
+ = render partial: "layouts/app_menu"
.content
= yield