This commit is contained in:
2025-08-10 17:47:57 -07:00
parent 9d5a558137
commit 611777a9d5
6 changed files with 9 additions and 6 deletions

View File

@@ -4,7 +4,7 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>{{ .Title }}</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="assets/css/style.css" />
</head>
<body {{ .PageSizeAttr }}>
<div id="page">{{ .Content }}</div>

View File

@@ -4,7 +4,7 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>All Pages</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="assets/css/style.css" />
<style>
html, body { margin: 0; padding: 0; height: 100%; }
body { background: #eeeeee; }
@@ -18,7 +18,7 @@
<div class="main">
{{ range .Pages }}
<div class="thumb">
<div class="label">{{ .Name }}</div>
<a class="label" href="{{ .Href }}">{{ .Name }}</a>
<iframe src="{{ .Href }}" loading="lazy"></iframe>
</div>
{{ end }}

View File

@@ -4,7 +4,7 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Print</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="assets/css/style.css" />
<style>
/* Ensure a clean print with no gaps between pages */
@media screen { body { background: #eeeeee; } }

View File

@@ -4,7 +4,7 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Print 2-Up</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="assets/css/style.css" />
<style>
/* Letter page with two half-letter pages laid out horizontally */
/* Do NOT constrain the whole document to a single sheet */