shiori/internal/view/embed.go
Felipe Martin 4df7e1dd8e
feat: build css from less files locally (#735)
* build less using lessc and bun

* build

* make styles-check

* Added workflow to check updates

* avoid embed less files

* docs

* updated tests to reflect changes

* typo

* fixed archive page css

* call styles check on pull requests

* comments in style.less

* fix archive styles affecting other pages

* minify using clean-css

* Split archive.css and style.css

* Updated docs
2023-09-16 19:58:55 +02:00

10 lines
142 B
Go

package views
import "embed"
//go:embed assets/js/* assets/css/* assets/res/*
var Assets embed.FS
//go:embed *.html
var Templates embed.FS