diff --git a/app/controllers/tutorials_controller.rb b/app/controllers/tutorials_controller.rb
index 1e77beb..7854812 100755
--- a/app/controllers/tutorials_controller.rb
+++ b/app/controllers/tutorials_controller.rb
@@ -2,6 +2,13 @@ class TutorialsController < ApplicationController
skip_before_filter :authenticated
+ def index
+ end
+
+ def show
+ render "injection"
+ end
+
def injection
end
diff --git a/app/views/layouts/shared/_header.html.erb b/app/views/layouts/shared/_header.html.erb
index 5260491..38e4b73 100755
--- a/app/views/layouts/shared/_header.html.erb
+++ b/app/views/layouts/shared/_header.html.erb
@@ -29,29 +29,8 @@
-->
Welcome, <%= current_user.first_name.html_safe %>
-
-
-
-
- 3
-
-
-
-
-
-
-
- 5
-
-
-
-
-
-
-
- 9
-
-
-
+
+ <%= button_to "RailsGoat Tutorials", tutorials_path, {:class => "btn btn-primary", :method => "get"}%>
+
\ No newline at end of file
diff --git a/app/views/layouts/tutorial/_header.html.erb b/app/views/layouts/tutorial/_header.html.erb
index 76f59ce..5b96e27 100755
--- a/app/views/layouts/tutorial/_header.html.erb
+++ b/app/views/layouts/tutorial/_header.html.erb
@@ -13,7 +13,11 @@
<% else %>
-
+
+ -
+ <%= button_to "<- back to app", home_dashboard_index_path, {:class => "btn btn-primary", :method => "get"} %>
+
+
<% end %>
\ No newline at end of file
diff --git a/app/views/layouts/tutorial/_sidebar.html.erb b/app/views/layouts/tutorial/_sidebar.html.erb
index ac7d09f..6b1f9f9 100755
--- a/app/views/layouts/tutorial/_sidebar.html.erb
+++ b/app/views/layouts/tutorial/_sidebar.html.erb
@@ -1,5 +1,13 @@
+ -
+ <%= link_to tutorials_path, :html => {:method => "get"} do %>
+
+
+
+ Tutorial Home
+ <% end %>
+
-
<%= link_to injection_tutorials_path do %>
diff --git a/app/views/tutorials/index.html.erb b/app/views/tutorials/index.html.erb
new file mode 100644
index 0000000..5b3c457
--- /dev/null
+++ b/app/views/tutorials/index.html.erb
@@ -0,0 +1,7 @@
+
\ No newline at end of file