23 lines
433 B
C
23 lines
433 B
C
/* Absolute path to */
|
|
#define ROOT "."
|
|
#define DB ROOT"/db"
|
|
|
|
|
|
/* Html generator */
|
|
#define CSS "style.css"
|
|
#define LOGO "../files/logo.png"
|
|
|
|
#define DESC "-> from outer space"
|
|
#define TITLE "/ img"
|
|
#define POST_PER_PAGE 5
|
|
|
|
|
|
/* RSS generator */
|
|
#define LINK "https://nlight.tilde.team/img/"
|
|
#define XML_FILE "index.xml"
|
|
|
|
#define LANGUAGE "en-US"
|
|
#define MAX_POST_COUNT 5
|
|
|
|
/* Date */
|
|
#define DATE_FORMAT "%a, %d %h %Y %H:%M:%S %z"
|