Packages

Rapport aims to provide a robust set of modules to generate HTML reports that both looks good in the browser and when being printed.

Current section

Files

Jump to
rapport lib base_template base_template.html.eex
Raw

lib/base_template/base_template.html.eex

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title><%= @title %></title>
<style><%= @normalize_css %></style>
<style><%= @paper_css %></style>
<style>@page {size: <%= @paper_settings %>}</style>
<%= @report_template %>
</head>
<body class="<%= @paper_settings %>">
<%= @pages %>
</body>
</html>