diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 6e269614..f3c55b58 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -9,6 +9,7 @@ <%= stylesheet_link_tag "print", media: "print" %> <%= javascript_include_tag "application" %> <%= csrf_meta_tags %> + <%= yield :extra_headers %>
diff --git a/app/views/manuals/index.html.erb b/app/views/manuals/index.html.erb index 80304a7c..27bba020 100644 --- a/app/views/manuals/index.html.erb +++ b/app/views/manuals/index.html.erb @@ -1,3 +1,9 @@ +<% content_for :extra_headers do %> + <% if @manual.summary.present? %> + + <% end %> +<% end %> + <% content_for :title, @manual.full_title %>