A static site generator, written in C
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.

cms_files.h 441B

1234567891011121314151617
  1. #ifndef CMS_FILES_H
  2. #define CMS_FILES_H
  3. //Directory for all resources, like default themes and such.
  4. #define CMS_FILE_RESOURCES "/usr/share/housecat"
  5. //File which tells us if a directory is already initiated.
  6. #define CMS_FILE_INITED ".cmsinited"
  7. //The name of the dir which specifies the title and
  8. //other metadata of a page
  9. #define CMS_FILE_PAGE "page"
  10. //Directory containing the user's resources.
  11. #define CMS_FILE_ROOT "pages"
  12. #endif