aboutsummaryrefslogtreecommitdiffstats
path: root/lib/attachment_to_html/template.html.erb
blob: 38286a5f9157c249fc05564fa9949ba9ab2f29e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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>