summaryrefslogtreecommitdiff
path: root/templates.go
diff options
context:
space:
mode:
authorNicolas Paul <n@nc0.fr>2023-05-26 17:26:17 +0200
committerNicolas Paul <n@nc0.fr>2023-05-26 17:26:17 +0200
commitbd426ee782d633174ce4907cb7a9d2919be79eda (patch)
tree5c2f1758cc2e44696dad68520ebb5d82e0456f58 /templates.go
parente00e455cafb72edb4bddd7bc087e1fb0ff1e4e45 (diff)
Clean for v2
Diffstat (limited to 'templates.go')
-rw-r--r--templates.go95
1 files changed, 0 insertions, 95 deletions
diff --git a/templates.go b/templates.go
deleted file mode 100644
index b6b274b..0000000
--- a/templates.go
+++ /dev/null
@@ -1,95 +0,0 @@
-// Copyright (c) 2023 Nicolas Paul All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package main
-
-import (
- "fmt"
- "html/template"
- "io"
-)
-
-// indextmpl is the HTML template to generate for the index page of the static
-// site (route "/").
-var indextmpl = template.Must(
- template.New("index").Parse(`<!DOCTYPE html>
-<html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta http-equiv="content-type" content="text/html" charset="UTF-8">
- <title>{{.Hostname}}</title>
- <meta name="generator" content="staticgovanityurls (https://staticgovanityurls.nc0.fr)">
- <meta name="viewport" content="width=device-width,height=device-height,initial-scale=1.0,user-scalable=yes">
- </head>
- <body>
- <h1>{{.Hostname}}</h1>
- <ul>
- {{range .Paths}}<li><a href="https://{{.}}">{{.}}</a></li>
- {{end}}
- </ul>
- </body>
-</html>`),
-)
-
-// executeIndex generates the Index template using the given variables.
-// paths is a list of import path (containing both hostname and prefix).
-func executeIndex(o io.Writer, hostname string, paths []string) error {
- return indextmpl.Execute(o, struct {
- Hostname string
- Paths []string
- }{
- Hostname: hostname,
- Paths: paths,
- })
-}
-
-// pathtmpl is the HTML template to generate for the page of a module.
-var pathtmpl = template.Must(
- template.New("path").Parse(`<!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta http-equiv="content-type" content="text/html" charset="UTF-8">
- <meta name="generator" content="staticgovanityurls (https://staticgovanityurls.nc0.fr)">
- <meta name="viewport" content="width=device-width,height=device-height,initial-scale=1.0,user-scalable=yes">
- <meta name="go-import" content="{{.Prefix}} {{.Vcs}} {{.Repo}}">
- <meta name="go-source" content="{{.Prefix}} {{.Repo}} {{.Dir}} {{.File}}">
- <title>{{.Prefix}}</title>
- </head>
- <body>
- <h1>{{.Prefix}}</h1>
- <ul>
- <li><a href="https://pkg.go.dev/{{.Prefix}}">Documentation</a></li>
- <li><a href="{{.Repo}}">Source ({{.Vcs}})</a></li>
- </ul>
- </body>
- </html>`),
-)
-
-// executePath generates the path template using the given variables.
-func executePath(
- o io.Writer,
- hostname string,
- prefix string,
- vcs VCS,
- repo string,
- dir string,
- file string,
-) error {
- return pathtmpl.Execute(o, struct {
- Prefix string
- Repo string
- Dir string
- File string
- Vcs VCS
- }{
- Prefix: fmt.Sprintf("%s/%s", hostname, prefix),
- Repo: repo,
- Vcs: vcs,
- Dir: dir,
- File: file,
- })
-}