Echo Writes Code

limetree.kdl

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
frontend {
  // This is the site title. It will be displayed in several prominent locations, like tabs and the
  // site header.
  title "Limetree CMS"

  // This is the theme. It defaults to the `simple` theme, which is bundled with Limetree.
  //theme "simple"
}

backend {
  // This is the location that Limetree will store its files. It is also where themes will be loaded
  // from. This is either an absolute path, or relative to the directory Limetree is running in. It
  // defaults to `$(pwd)/limetree_data`.
  root "limetree_data"

  // This is an alternate location for Limetree to store content files specifically (i.e., the pages
  // you create and edit, as well as file uploads). It defaults to `$(root)/content`.
  //content_path "limetree_data/content"

  // This is an alternate location for Limetree to store its metadata file, which stores things like
  // page titles and tag lists. It defaults to `$(root)/metadata.json`.
  //metadata_path "limetree_data/metadata.json"

  // This is an alternate location for themes to be installed under. It defaults to
  // `$(root)/themes`.
  //themes_path "limetree_data/themes"
}