blob: fe4a6a0f65fa754c6f9d16965f18b533c90cc333 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* this URL is just the prefixing (http(s):)//domain.com
* needed for the RSS feed */
#define BLOG_SERVER_URL "//example.com"
/* Where should the blogposts
* be stored? */
#define BLOG_DIR "./posts"
/* the title of the blog */
#define BLOG_TITLE "hackhackblogblog"
/* the description */
#define BLOG_DESCRIPTION "yet another blog"
/* how long is the rss feed allowed to
* be cached by a RSS-Reader before it should
* be refreshed again? ("time to live") */
#define BLOG_RSS_TTL 30
|