-
Notifications
You must be signed in to change notification settings - Fork 0
1. Using this theme
MACN1981 edited this page Jan 3, 2019
·
1 revision
This repository is a valid wyam blog project. This mean that, once you have installed Wyam (see official page for a how to), you can generate a blog by calling wyam from the terminal once you are in that folder, and you will have a full webpage generated for you in the output folder.
Note that you can instead use wyam -p -w if you also want to preview you blog in wyam built-in web server (by default it will use the url http://localhost:5080)
To use this theme to generate a working blog for github pages you will need to have the following values in your config.wyam file in order to have working links:
//replace username with your github user name
Settings[Keys.Host] = "username.github.io";
Settings[Keys.LinksUseHttps] = true;
//replace repo with the name of your repository
Settings[Keys.LinkRoot] = "repo";