BSD-3-Clause licensed by Elie Genard
Maintained by [email protected]
This version can be pinned in stack with:hakyll-favicon-0.1.0@sha256:79ae766d7282129c2c1a10c4264c7bad4d44cb83fb76d6242bc4545ea5c2ade4,1361

Module documentation for 0.1.0

Used by 1 package in lts-9.21(full list with versions):

hakyll-favicon Build Status

This library allows you to easily add favicons to your hakyll website. You provide one SVG image and the library will convert it to different resolutions and generate the corresponding html.

Dependencies

This library depends on ImageMagick to convert the images.

Usage

First, add a faviconsRules that points to your main favicon in your Site.hs file like this:

main = hakyll $ do
  faviconsRules "images/favicon.svg" -- path to your favicon
  ...

Second, add a favicons field in your template head:

<head>
  ...
  $favicons$
</head>

Finally add the favicons context to your template context:

main = hakyll $ do
  ...
  match "index.html" $ do
    ...
    let ctx = ... `mappend`
              ... `mappend`
              faviconsField `mappend` -- add this
              defaultContext
    ...

The example directory provides a minimal working example of this.

Example

First, build the example:

stack build

Then build the example page:

stack exec example build

Or you can start a local server to serve the generated page:

stack exec example watch

Generated favicons

The following favicons are generated:

target format sizes description
all .ico 32, 64 basic favicon
all .png 32 basic favicon
iOS .png 144 third-generation iPad with high-resolution Retina display
iOS .png 114 iPhone with high-resolution Retina display
iOS .png 72 first- and second-generation iPad
iOS, Android .png 57 non-Retina iPhone, iPod Touch, and Android 2.1+ devices