Alexander "Arav" Andreev
f18cc3c44e
Implemented an init func that preload articles. Implemented GetArticlesMetadata() that returns metadata for articles used on the Stuff page.
30 lines
871 B
Go
30 lines
871 B
Go
package web
|
|
|
|
import (
|
|
"embed"
|
|
"io/fs"
|
|
"net/http"
|
|
)
|
|
|
|
// To install a Jade compiler: go install github.com/Joker/jade/cmd/jade@latest
|
|
//
|
|
//go:generate $GOPATH/bin/jade -basedir ./templates -pkg=web -writer index.pug stuff.pug mindflow.pug
|
|
//go:generate $GOPATH/bin/jade -basedir ./templates -pkg=web -writer about.pug guestbook.pug rss.pug
|
|
//go:generate $GOPATH/bin/jade -basedir ./templates -pkg=web -writer guestbook_admin.pug mindflow_admin.pug
|
|
|
|
//go:generate $GOPATH/bin/jade -basedir ./templates -pkg=web -writer article.pug
|
|
|
|
//go:generate $GOPATH/bin/jade -basedir ./templates -pkg=web -writer error403.pug error404.pug error500.pug
|
|
|
|
//go:embed assets
|
|
var assetsDir embed.FS
|
|
|
|
func Assets() http.FileSystem {
|
|
f, _ := fs.Sub(assetsDir, "assets")
|
|
return http.FS(f)
|
|
}
|
|
|
|
func AssetsGetFile(path string) ([]byte, error) {
|
|
return assetsDir.ReadFile("assets/" + path)
|
|
}
|