Blog-style website for karathan using the self-made Stellar Theme powered by HTML5Up http://blog.karathan.at

config.yml.template 2.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. ##
  2. # Basic
  3. #
  4. site_title: Pico # The title of your website
  5. base_url: ~ # Pico will try to guess its base URL, if this fails, override it here
  6. # Example: http://example.com/pico/
  7. rewrite_url: ~ # A boolean (true or false) indicating whether URL rewriting is forced
  8. timezone: UTC # Your PHP installation might require you to manually specify a timezone
  9. ##
  10. # Theme
  11. #
  12. theme: default # The name of your custom theme
  13. theme_url: ~ # Pico will try to guess the URL to the themes dir of your installation
  14. # If this fails, override it here. Example: http://example.com/pico/themes/
  15. theme_config:
  16. widescreen: false # Default theme: Use more horicontal space (i.e. make the site container wider)
  17. twig_config:
  18. cache: false # Enable Twig template caching by specifying a path to a writable directory
  19. autoescape: false # Let Twig escape variables by default
  20. debug: false # Enable Twig's debugging mode
  21. ##
  22. # Content
  23. #
  24. date_format: %D %T # Pico's default date format
  25. # See http://php.net/manual/en/function.strftime.php for more info
  26. pages_order_by_meta: author # Sort pages by meta value "author" (set "pages_order_by" to "meta")
  27. pages_order_by: alpha # Change how Pico sorts pages ("alpha" for alphabetical order, "date", or "meta")
  28. pages_order: asc # Sort pages in ascending ("asc") or descending ("desc") order
  29. content_dir: content/ # The path to Pico's content directory
  30. content_ext: .md # The file extension of your Markdown files
  31. content_config:
  32. extra: true # Use the Parsedown Extra parser to support extended markup
  33. # See https://michelf.ca/projects/php-markdown/extra/ for more info
  34. breaks: false # A boolean indicating whether breaks in the markup should be reflected in the
  35. # parsed contents of the page
  36. escape: false # Escape HTML markup in your content files; don't confuse this with some sort of
  37. # safe mode, enabling this doesn't allow you to process untrusted user input!
  38. auto_urls: true # Automatically link URLs found in your markup
  39. ##
  40. # Plugins
  41. #
  42. DummyPlugin.enabled: false # Force the plugin "DummyPlugin" to be disabled
  43. ##
  44. # Custom
  45. #
  46. my_custom_setting: Hello World! # You can access custom settings in themes using {{ config.my_custom_setting }}