BlogTemplate

A bare minimum theme to use as a starting point for new themes.

Usage Via NuGet

This is an official theme and therefore Wyam already knows about it and no explicit NuGet package needs to be specified.

To use it, pass the -t argument on the command line to specify the theme (along with the -r argument to specify the recipe):

wyam -r blog -t BlogTemplate

Alternatively, you can specify the theme and recipe in your configuration file:

#r blog
#t BlogTemplate

This theme contains the bare minimum files and code to work with the blog recipe. It can be used as the basis for new themes or as a starting point for your own custom layout. Typically you'd copy all of the files from the source repository into your own input or theme directory and then edit them (as opposed to using the theme as a theme like you would with others).

GitHub