aboutsummaryrefslogtreecommitdiffstats
path: root/lib/attachment_to_html/template.html.erb
blob: b898b1750a99144412997b7e9b9c4fb7b33fdd2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <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>