diff --git a/app/views/layouts/_footer.html.erb b/app/views/layouts/_footer.html.erb
new file mode 100644
index 0000000..e2ed58b
--- /dev/null
+++ b/app/views/layouts/_footer.html.erb
@@ -0,0 +1,9 @@
+
\ No newline at end of file
diff --git a/app/views/layouts/_header.html.erb b/app/views/layouts/_header.html.erb
new file mode 100644
index 0000000..bc0c1b2
--- /dev/null
+++ b/app/views/layouts/_header.html.erb
@@ -0,0 +1,10 @@
+
+ <%= image_tag("logo.png", :alt => "Sample App", :class => "round") %>
+
+
\ No newline at end of file
diff --git a/app/views/layouts/_stylesheets.html.erb b/app/views/layouts/_stylesheets.html.erb
new file mode 100644
index 0000000..a7a80e2
--- /dev/null
+++ b/app/views/layouts/_stylesheets.html.erb
@@ -0,0 +1,7 @@
+
+<%= stylesheet_link_tag 'blueprint/screen', :media => 'screen' %>
+<%= stylesheet_link_tag 'blueprint/print', :media => 'print' %>
+
+<%= stylesheet_link_tag 'custom', :media => 'screen' %>
\ No newline at end of file
diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb
index f78603a..7e23b7f 100644
--- a/app/views/layouts/application.html.erb
+++ b/app/views/layouts/application.html.erb
@@ -3,29 +3,15 @@
<%= title %>
<%= csrf_meta_tag %>
-
- <%= stylesheet_link_tag 'blueprint/screen', :media => 'screen' %>
- <%= stylesheet_link_tag 'blueprint/print', :media => 'print' %>
-
- <%= stylesheet_link_tag 'custom', :media => 'screen' %>
+ <%= render 'layouts/stylesheets' %>
-
- <%= image_tag("logo.png", :alt => "Sample App", :class => "round") %>
-
-
+ <%= render 'layouts/header' %>
+ <%= render 'layouts/footer' %>