/* See LICENSE file for copyright and license details. */
/* where the mdx content repo lives */
static const char *contentdir = "/home/krisyotam/lit/content";
/* output: pages go to OUTDIR/<type>/<slug>.html, listings to ./<type>.html */
#define OUTDIR "d"
/* content types and their listing page titles */
static const char *types[][2] = {
{ "blog", "Blog" },
{ "essays", "Essays" },
{ "papers", "Papers" },
{ "notes", "Notes" },
{ "reviews", "Reviews" },
{ "fiction", "Fiction" },
{ "diary", "Diary" },
{ "news", "News" },
{ "progymnasmata", "Progymnasmata" },
{ "verse", "Verse" },
{ "prayers", "Prayers" },
{ "ocs", "Original Characters" },
};
/* how many entries to print for the index recent-writing block */
#define NRECENT 5