I'm happily using a remote theme (like the excellent Just the docs) for my public github pages (like here).
It is as simple as adding remote_theme: pmarsceill/just-the-docs
to the _config.yml
file.
Now I wanted to use this for a GitHub Enterprise (GHE) instance. I only got an unspecified error "Github page generation failed". I tried 3 options:
- Just have the entry
remote_theme: pmarsceill/just-the-docs
- added the host
remote_theme: 'https://github.com/pmarsceill/just-the-docs'
- Cloned the repository to GHE:
remote_theme: myuser/just-the-docs
None of that worked. What do I miss?