Advertisement
Foxscotch

config.yaml

Dec 13th, 2015
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.47 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 letting the program know what files to load.
  29. content:
  30.  - index.md:contents.j2
  31.   - untitled_story:
  32.    - chapter_1.md
  33.  
  34.  
  35. # This setting is just for extra information provided to the template. It's
  36. # optional, and someone writing the templates should provide defaults.
  37. layout_config:
  38.   background_color: white
  39.   container_background_color: white
  40.   main_font: Helvetica Neue
  41.   secondary_font: Helvetica
  42.   main_text_color: black
  43.   heading_text_color: black
  44.   link_color: "#339bb7"
  45.   visited_link_color: "#336fb7"
  46.   text_indent: True
  47. # They're all set to their defaults from my template, this is just for example.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement