summaryrefslogtreecommitdiff
path: root/lib/generators/nifty/layout/templates/layout.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'lib/generators/nifty/layout/templates/layout.html.haml')
-rw-r--r--lib/generators/nifty/layout/templates/layout.html.haml21
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/generators/nifty/layout/templates/layout.html.haml b/lib/generators/nifty/layout/templates/layout.html.haml
new file mode 100644
index 0000000..24ec1d6
--- /dev/null
+++ b/lib/generators/nifty/layout/templates/layout.html.haml
@@ -0,0 +1,21 @@
+!!!
+%html
+
+ %head
+ %title
+ = content_for?(:title) ? yield(:title) : "Untitled"
+ %meta{"http-equiv"=>"Content-Type", :content=>"text/html; charset=utf-8"}/
+ = stylesheet_link_tag "application"
+ = javascript_include_tag "application"
+ = csrf_meta_tag
+ = yield(:head)
+
+ %body
+ #container
+ - flash.each do |name, msg|
+ = content_tag :div, msg, :id => "flash_#{name}"
+
+ - if show_title?
+ %h1= yield(:title)
+
+ = yield