summaryrefslogtreecommitdiffstats
path: root/cloudmasterd/lib/cloudmasterd.rb
diff options
context:
space:
mode:
Diffstat (limited to 'cloudmasterd/lib/cloudmasterd.rb')
-rw-r--r--cloudmasterd/lib/cloudmasterd.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/cloudmasterd/lib/cloudmasterd.rb b/cloudmasterd/lib/cloudmasterd.rb
index 4386084..33c094f 100644
--- a/cloudmasterd/lib/cloudmasterd.rb
+++ b/cloudmasterd/lib/cloudmasterd.rb
@@ -236,8 +236,12 @@ module Cloudmasterd::Views
div.header! do
div.headerLogo! {}
end
- div.content! do
- self << yield
+ div.body! do
+ div.content! do
+ div.inner! do
+ self << yield
+ end
+ end
end
end
end