A static site generator, written in C
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

cms_files.h 251B

12345678910
  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/cms"
  5. //File which tells us if a directory is already initiated.
  6. #define CMS_FILE_INITED ".cmsinited"
  7. #endif