diff options
Diffstat (limited to 'lib/attachment_to_html/template.html.erb')
-rw-r--r-- | lib/attachment_to_html/template.html.erb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/attachment_to_html/template.html.erb b/lib/attachment_to_html/template.html.erb index 9d3068ce2..38286a5f9 100644 --- a/lib/attachment_to_html/template.html.erb +++ b/lib/attachment_to_html/template.html.erb @@ -2,12 +2,15 @@ <html> <head> <title><%= title %></title> + <%= content_for(:head_suffix) %> </head> <body> + <%= content_for(:body_prefix) %> <div id="<%= wrapper %>"> <div id="view-html-content"> <%= body %> </div> </div> + <%= content_for(:body_suffix) %> </body> </html> |