I have just started working with Jekyll. As a front-end developer i have to create a lot of static pages for web applications before they go into development.
I am t
You can view a built Jekyll site without a server - but it needs an extra tool.
Serve your Jekyll site as normal, and use wget to clone your served site in flat format. This will work on a linux system:
You may need to play about with wget settings, but if your site is served on port 4000 you could try something like this:
wget --convert-links -r http://127.0.0.1:4000/
You'll probably need to be careful with the recursive flag. See http://www.gnu.org/software/wget/