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 {