gtx


Branch: develop

Author
thewhodidthis <thewhodidthis@fastmail.com>
Date
Mar. 06 '23 18:18:17
Commit
b1ece91ab0a3c6c3c5237cd43400a945c2ad1741
Parent
c2107f58971be92de802bbbc1a0aa67b93ee92b9
Changes
diff --git a/page.html.tmpl b/page.html.tmpl
index 76e74b0..8392659 100644
--- a/page.html.tmpl
+++ b/page.html.tmpl
@@ -4,9 +4,6 @@
     <base href="{{with .Base}}{{.}}{{else}}/{{end}}">
     <meta charset="utf-8">
     <title>{{.Title}}</title>
-    {{- with .Stylesheet }}
-    <link rel="stylesheet" href="{{.}}">
-    {{- else }}
     <style>
       html {
         font: medium/normal serif;
@@ -24,7 +21,6 @@
         caption-side: bottom;
       }
     </style>
-    {{- end }}
   </head>
   <body>
     <header>
diff --git a/types.go b/types.go
index 723dd12..af0331c 100644
--- a/types.go
+++ b/types.go
@@ -16,8 +16,7 @@ type Data map[string]interface{}
 type page struct {
 	Base string
 	Data
-	Stylesheet string
-	Title      string
+	Title string
 }
 
 type branch struct {