Skip to content

Instantly share code, notes, and snippets.

@brennovich
Forked from dagda1/application.html.haml
Created December 27, 2011 17:04
Show Gist options
  • Save brennovich/1524373 to your computer and use it in GitHub Desktop.
Save brennovich/1524373 to your computer and use it in GitHub Desktop.
application.html.haml
!!!
%head
%meta{:charset => "utf-8"}
%meta{:author => "Brenno Costa"}
%title Application Layout Hamlfy
=stylesheet_link_tag "application"
=javascript_include_tag "application"
=csrf_meta_tags
%body
- flash.each do |name, msg|
= content_tag :div, msg, :id => "flash_#{name}" if msg.is_a?(String)
= yield
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment