A static site generator, written in C
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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