Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Improved documenation.
  • Loading branch information
felixfontein committed Oct 14, 2016
1 parent b854621 commit 1707992
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
6 changes: 6 additions & 0 deletions docs/manual.txt
Expand Up @@ -501,6 +501,12 @@ options. The exact mechanism is explained above the config options in the
# to feeds, indexes, tag lists and archives and are considered part
# of a blog, while PAGES are just independent HTML pages.
#
# Finally, note that destination can be translated, i.e. you can
# specify a different translation folder per language. Example:
# PAGES = (
# ("pages/*.rst", {"en": "pages", "de": "artikel"}, "story.tmpl"),
# ("pages/*.md", {"en": "pages", "de": "artikel"}, "story.tmpl"),
# )

POSTS = (
("posts/*.rst", "posts", "post.tmpl"),
Expand Down
7 changes: 5 additions & 2 deletions nikola/conf.py.in
Expand Up @@ -120,8 +120,11 @@ THEME_COLOR = '#5670d4'
# of a blog, while PAGES are just independent HTML pages.
#
# Finally, note that destination can be translated, i.e. you can
# specify a different translation folder per language.
#
# specify a different translation folder per language. Example:
# PAGES = (
# ("pages/*.rst", {"en": "pages", "de": "artikel"}, "story.tmpl"),
# ("pages/*.md", {"en": "pages", "de": "artikel"}, "story.tmpl"),
# )

POSTS = ${POSTS}
PAGES = ${PAGES}
Expand Down

0 comments on commit 1707992

Please sign in to comment.