summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.h')
-rw-r--r--config.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/config.h b/config.h
index bcd15c1..fd3e6dd 100644
--- a/config.h
+++ b/config.h
@@ -20,9 +20,10 @@
enum flag
{
- NONE = 0,
- RSS = 1,
- PINNED = 2,
+ NONE = 1<<0,
+ RSS = 1<<1,
+ RSSIMAGES = 1<<2,
+ PINNED = 1<<3,
};
struct page
@@ -116,7 +117,7 @@ static const struct page pages[] = {
{opinions_animepage, NONE},
{opinions_everythingpage, NONE},
{portfoliopage, NONE},
- {postspage, RSS|PINNED}, /* flags: RSS feed, pinned posts */
+ {postspage, RSS|RSSIMAGES|PINNED}, /* flags: RSS feed, RSS images, pinned posts */
};
#endif