hakyll-dir-list: Allow Hakyll to create hierarchical menues from directories.

[ bsd3, library, web ] [ Propose Tags ]

Hakyll extension which supports the creation of hierarchical menus from source files in a directory structure. Adittionally single page web sites can created by using flattened page id's instead of urls.


[Skip to Readme]

Modules

[Index] [Quick Jump]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1.1.0, 1.0.0.0, 1.0.0.1, 1.0.0.2, 1.0.0.3, 1.0.0.4
Change log CHANGELOG.md
Dependencies base (>=4 && <5), containers, data-default, filepath, hakyll (>=4.12 && <4.13) [details]
License BSD-3-Clause
Author Robert Hennig <robert.hennig@freylax.de>
Maintainer Robert Hennig <robert.hennig@freylax.de>
Category Web
Home page http://github.com/freylax/hakyll-dir-list
Bug tracker http://github.com/freylax/hakyll-dir-list/issues
Uploaded by RobertHennig at 2018-09-08T20:26:09Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 3016 total (14 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2018-09-08 [all 1 reports]

Readme for hakyll-dir-list-1.0.0.4

[back to package description]

hakyll-dir-list

Hakyll extension which supports the creation of hierarchical menus from source files in a directory structure. Adittionally single page web sites can created by using flattened page id's instead of urls.

Build the library

  • stack build

Usage

The exported dirListField function is similar to the Hakyll listField template function but creates additional context information which can be used in the template to create a hierarchical menu.

Context usable inside the template

  • $begin-tags$ injects <li> and <ul> tags if apropriate
  • $end-tags$ contains the corresponding </li> and </ul> tags
  • $full-page-id$ is the hyphen seperated path of the page
  • use configuration to get level dependant structuring tags

Metainformation in the source files

For each subdirectory which should be processed one source file with the same base name should exist which can contain meta information:

  • pages/a.md top page for directory a
  • pages/a/foo.md page foo within a

The following meta information can be given

  • page-id part of the generated id, if not given the base name of the file
  • page-order give an ordering key for sorting in the current directory level, if not given the page-id will be used

For a more fine grained control the tags which are used are configurable for each level of the menu.

Example

See the example for an illustration of usage.