Reputation: 145
I have a Jekyll site running on github pages. I want to transfer all the content on a private hosting that doesn't allow a Jekyll installation.
Is there a way to "compile" the markdown and the configurations and get a standalone version of the website so it can be hosted as simple HTML + PHP + CSS?
Upvotes: 1
Views: 140
Reputation: 8407
Since the GitHub Page site is 100%, all you need to do is download all of its pages.
$ wget \
--recursive \
--no-clobber \
--page-requisites \
--html-extension \
--convert-links \
--domains example.com \
--no-parent \
www.example.com
Upvotes: 0
Reputation: 12590
Use Github for versioning and use their platform to build your site (make sure you load the right gems for your theme). In Settings set your Output Syncing to 'FTP'. I think a paid account is required.
Use Github for versioning and use their platform to build your site (make sure you load the right gems for your theme). In Settings set your Deploy to 'FTP'. I think a free account is enough to do so.
I know you did not want this... but it is the simplest solution. Use Github for versioning and build locally (make sure you load the right gems for your theme). Then upload the content of the _site folder through FTP to your server. Absolutely free.
Upvotes: 0