mostly filebased Content Presentation System
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.2KB

  1. SITE_URL =
  2. [routes]
  3. GET / = Controller\Page->home
  4. GET /home = Controller\Page->home
  5. GET /login = Controller\User->login
  6. GET /register = Controller\User->register
  7. GET @page: /@page = Controller\Page->index
  8. GET /@level1/@level2 = Controller\Page->secondLevel
  9. GET /@level1/@level2/@level3 = Controller\Page->thirdLevel
  10. GET /@level1/@level2/@level3/@level4 = Controller\Page->fourthLevel
  11. [configs]
  12. content/navi.cfg=false
  13. content/data.cfg=false
  14. content/reroutes.cfg=false
  15. [siteColors]
  16. primary=#f0a
  17. [templateVars]
  18. includeBanner=false
  19. ;; "customVars" are global (in F3) and can be changed in content files
  20. [customVars]
  21. backgroundColor=#fff
  22. info1=test
  23. [globals]
  24. title=Title of new Page
  25. hideFromSearchEngines=true
  26. ;; (multilingual) content configuration
  27. ;; ------------------------------------
  28. ; comma seperated list of language identifiers
  29. ; at least one language need to be defined here
  30. ; fist mention is default language
  31. languages=de,en
  32. ; content directories for different languages
  33. content.de=content/DE/
  34. content.en=content/EN/
  35. ;; HTML Template related:
  36. ;; ----------------------
  37. ;public directory for css, javascript, images etc.
  38. RESOURCES=rsc/
  39. ;default site template:
  40. template=tpl/index.html
  41. external_links_open_in_new_window=false