hakyll-4.13.0.0: A static website compiler library

Safe HaskellNone
LanguageHaskell2010

Hakyll.Web.Template.Internal

Synopsis

Documentation

data Template Source #

Datatype used for template substitutions.

Constructors

Template 
Instances
Eq Template Source # 
Instance details

Defined in Hakyll.Web.Template.Internal

Show Template Source # 
Instance details

Defined in Hakyll.Web.Template.Internal

IsString Template Source # 
Instance details

Defined in Hakyll.Web.Template.Internal

Generic Template Source # 
Instance details

Defined in Hakyll.Web.Template.Internal

Associated Types

type Rep Template :: Type -> Type #

Methods

from :: Template -> Rep Template x #

to :: Rep Template x -> Template #

Binary Template Source # 
Instance details

Defined in Hakyll.Web.Template.Internal

Methods

put :: Template -> Put #

get :: Get Template #

putList :: [Template] -> Put #

Writable Template Source # 
Instance details

Defined in Hakyll.Web.Template.Internal

Methods

write :: FilePath -> Item Template -> IO () Source #

type Rep Template Source # 
Instance details

Defined in Hakyll.Web.Template.Internal

type Rep Template = D1 (MetaData "Template" "Hakyll.Web.Template.Internal" "hakyll-4.13.0.0-GYdIZkb5Zkx9ZdPxGOCmgZ" False) (C1 (MetaCons "Template" PrefixI True) (S1 (MetaSel (Just "tplElements") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 [TemplateElement]) :*: S1 (MetaSel (Just "tplOrigin") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 FilePath)))

template :: FilePath -> [TemplateElement] -> Template Source #

Wrap the constructor to ensure trim is called.

templateBodyCompiler :: Compiler (Item Template) Source #

Read a template, without metadata header

templateCompiler :: Compiler (Item Template) Source #

Read complete file contents as a template

applyTemplate Source #

Arguments

:: Template

Template

-> Context a

Context

-> Item a

Page

-> Compiler (Item String)

Resulting item

Interpolate template expressions from context values in a page

loadAndApplyTemplate Source #

Arguments

:: Identifier

Template identifier

-> Context a

Context

-> Item a

Page

-> Compiler (Item String)

Resulting item

The following pattern is so common:

tpl <- loadBody "templates/foo.html"
someCompiler
    >>= applyTemplate tpl context

That we have a single function which does this:

someCompiler
    >>= loadAndApplyTemplate "templates/foo.html" context

applyAsTemplate Source #

Arguments

:: Context String

Context

-> Item String

Item and template

-> Compiler (Item String)

Resulting item

It is also possible that you want to substitute $key$s within the body of an item. This function does that by interpreting the item body as a template, and then applying it to itself.

readTemplate :: String -> Template Source #

Deprecated: Use templateCompiler instead

Parse a string into a template. You should prefer compileTemplateItem over this.

compileTemplateItem :: Item String -> Compiler Template Source #

Parse an item body into a template. Provides useful error messages in the Compiler monad.

unsafeReadTemplateFile :: FilePath -> Compiler Template Source #

Deprecated: Use templateCompiler