Files
smartbar/templates/print.gohtml

31 lines
1.2 KiB
Plaintext
Raw Permalink Normal View History

2025-08-10 17:17:01 -07:00
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Print</title>
2025-08-10 18:02:12 -07:00
<link rel="stylesheet" href="assets/css/base.css" />
<link rel="stylesheet" href="assets/css/smartbar.css" />
2025-08-10 17:17:01 -07:00
<style>
/* Ensure a clean print with no gaps between pages */
@media screen { body { background: #eeeeee; } }
/* Do NOT constrain the whole document to one page; let it flow across pages */
html, body { margin: 0; padding: 0; }
@media print {
html, body { width: auto !important; height: auto !important; overflow: visible !important; margin: 0 !important; padding: 0 !important; background: white !important; }
}
/* Each #page is a fixed-size sheet */
#page { width: var(--page-w, 5.5in); height: var(--page-h, 8.5in); background: white; box-shadow: none !important; overflow: hidden; }
#page { page-break-after: always; break-after: page; }
#page:last-child { page-break-after: auto; break-after: auto; }
2025-08-10 17:17:01 -07:00
</style>
</head>
<body {{ .PageSizeAttr }}>
{{ range .Pages }}
<div id="page">{{ .Content }}</div>
2025-08-10 17:17:01 -07:00
{{ end }}
</body>
</html>