1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-11-30 07:18:59 +01:00
gojekyll/pages/document.go
2017-08-18 11:07:01 -04:00

32 lines
578 B
Go

package pages
import (
"io"
"github.com/osteele/gojekyll/config"
"github.com/osteele/gojekyll/renderers"
)
// A Document is a Jekyll post, page, or file.
type Document interface {
// Paths
Permalink() string // relative URL path
SourcePath() string
OutputExt() string
// Output
Published() bool
Static() bool
Write(io.Writer) error
Reload() error
}
// Site is the interface that the site provides to a page.
type Site interface {
Config() *config.Config
RelativePath(string) string
RendererManager() renderers.Renderers
OutputExt(pathname string) string
}