summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorDaniel Jones <admin@danieljon.es>2020-01-11 16:28:28 +1030
committerDaniel Jones <admin@danieljon.es>2020-01-11 16:28:28 +1030
commitfcab620cc039fd96ea9976ef549448e4aca851de (patch)
tree3aaa841ae24afff881fe66638d6e72b77d68fe57 /config.h
parentff4359305c39c12b718a65bfd0c957b77214321b (diff)
downloadwebsitegenerator-fcab620cc039fd96ea9976ef549448e4aca851de.tar.gz
websitegenerator-fcab620cc039fd96ea9976ef549448e4aca851de.zip
make createfile() take a template argument
also begin rss page generation
Diffstat (limited to 'config.h')
-rw-r--r--config.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/config.h b/config.h
index 9f40ef3..cca7d3b 100644
--- a/config.h
+++ b/config.h
@@ -94,6 +94,9 @@ static const char *direct_output_dir = "posts/direct/";
static const int posts_per_page = 10;
static const int ignore[] = {}; /* ignore these posts */
+/* rss */
+static const char *rss_output = "posts/posts.rss";
+
/* each page to be generated go into this array */
static const struct page pages[] = {
/* function flags */
@@ -106,6 +109,7 @@ static const struct page pages[] = {
{opinions_everythingpage, NONE},
{portfoliopage, NONE},
{postspage, NONE},
+ {rsspage, NONE},
};
#endif