Advertisement
Foxscotch

config.yaml

Dec 12th, 2015
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.04 KB | None | 0 0
  1. ---
  2. # This is the configuration for a collection of stories within the Nemo
  3. # universe, and also a good example configuration.
  4.  
  5.  
  6. # All six of the following directory settings are set to their defaults.
  7.  
  8. # The setting for the content folder, and the corresponding static folder.
  9. content_dir: content
  10. content_static_dir: content/static
  11.  
  12. # The settings for the layout folder.
  13. layout_dir: layout
  14. layout_static_dir: layout/static
  15.  
  16. # The settings for the build destination.
  17. build_dir: build
  18. build_static_dir: build/static
  19.  
  20.  
  21. # Main template to use for rendering HTML files.
  22. # It looks within layout_dir, so my selection equates to layout/main.j2
  23. main_template: main.j2
  24. # While not required, it has no default. So if you choose not to define this
  25. # setting, every file you want built MUST have a template set inividually.
  26.  
  27.  
  28. # This required setting is for the heirarchy of stories.
  29. stories:
  30.   - untitled_story:
  31.    - chapter_1.md
  32.   - another_story:
  33.    - prologue.md
  34.     - chapter_1.md
  35.     - chapter_2.md
  36.     - epilogue.md
  37.   - about.md
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement