package main func getTemplate() string { return ` {{.URL}} {{.Favicon}}

- {{.URL}}

{{if .AllowUpload}}

To upload please click here.

{{end}}
{{if ne .URL "/"}} .. (up a dir)

{{end}} {{range .Links}} {{else}}file" title="File: {{.Text}}">{{end}} {{.Text}}
{{end}}
` } func get404() string { return ` Not Found - {{.URL}} {{.Favicon}}

Not Found - {{.URL}}

Please check for typos in your url.

Go back to root

` } func getUpload() string { return ` Upload Form {{.Favicon}}

Upload Form

You are going to upload a file. Here you can search to add it.


` } func getUploaded() string { return ` Uploaded {{.File}} {{.Favicon}}

Uploaded!

{{.File}} was successfull uploaded.

Back to root

` }