7.3. Rendering Other URIs

Some plugins provide other URIs that are part of your site, but not really part of your blog since they're not related to entries. Examples of this include the plugininfo plugin which provides information about the plugins that you're running. You can set the static_urls property in config.py to a list of all the urls that need to be rendered every time. This list could include:

static_urls takes a list of strings where each string is a url to be rendered. For example if I wanted to render the booklist page and the RSS feed for my main page, I would set it like this:

Example 7-4. static_urls variable value

py["static_urls"] = ["/booklist/index.html", "/index.xml"]