On this page:
9.1 Home page ("index.html.pp")
9.2 Keyword Index ("keyword-index.rkt")
9.3 Blog ("blog.rkt")
9.4 RSS Feed ("rss-feed.rkt")
9.5 Cache initialization ("util/  init.rkt")
9.6 New article template ("util/  newpost.rkt")
7.7

9 Other files

9.1 Home page ("index.html.pp")

Simple Pollen preprocessor file that generates the home page.

9.2 Keyword Index ("keyword-index.rkt")

Through its provided main function, builds the keyword index page by pulling all the index entries directly from the SQLite cache and sorting them by first letter.

9.3 Blog ("blog.rkt")

Through its provided main function, creates a paginated listing of all articles and notes.

9.4 RSS Feed ("rss-feed.rkt")

Through its provided main function, creates the RSS feed in the file "feed.xml". Both articles and notes are included. Any article or note with either "all" or "feed" in its 'conceal meta is excluded.

9.5 Cache initialization ("util/init.rkt")

Creates and initializes the cache database with init-cache-db! and preheat-series!.

9.6 New article template ("util/newpost.rkt")

Prompts for a title, creates an article with a normalized version of the filename and today’s date, and opens the article in an editor.