diff options
author | Louise Crow <louise.crow@gmail.com> | 2014-05-15 16:09:29 +0100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2014-05-15 16:09:29 +0100 |
commit | 26348ce676f7ebbabcc535b2ecf00f99f8fe85c0 (patch) | |
tree | 6034dd656a0f9af152f24d6c491b5e61a7190a7d /lib/attachment_to_html/template.html.erb | |
parent | 851ef575cf3c55a3bb194381497b958c2a3ebf1a (diff) | |
parent | b3fa23047bf96bd6a08273c9491ac1ee3b4a3f80 (diff) |
Merge branch 'release/0.18' into wdtk
Diffstat (limited to 'lib/attachment_to_html/template.html.erb')
-rw-r--r-- | lib/attachment_to_html/template.html.erb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/attachment_to_html/template.html.erb b/lib/attachment_to_html/template.html.erb new file mode 100644 index 000000000..38286a5f9 --- /dev/null +++ b/lib/attachment_to_html/template.html.erb @@ -0,0 +1,16 @@ +<!DOCTYPE html> +<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> |