18 lines
536 B
Plaintext
18 lines
536 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type"/>
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Prompt:300,400,400i,700&display=fallback">
|
|
<%= wicked_pdf_stylesheet_link_tag "pdf" %>
|
|
<%= wicked_pdf_javascript_include_tag "number_pages" %>
|
|
</head>
|
|
<body onload="number_pages">
|
|
<div id="content">
|
|
<%= yield %>
|
|
</div>
|
|
<div style='page-break-before:always;'>
|
|
<%= render 'shared/disclaimer' %>
|
|
</div>
|
|
</body>
|
|
</html>
|