Jekyll

    http://jekyll.tips
    https://github.com/CloudCannon/Jekyll-Tips

    docs:
    https://github.com/Shopify/liquid/wiki/Liquid-for-Designers

    jekyll embeddable services
    http://jekyll.tips/services/
    Forms:
    FormKeep
    FormSite
    FormSpree
    Formstack
    Jotform
    Wufoo
    Zoho

    full back/front API sets for static sites
    https://firebase.google.com/
    https://app.userapp.io/#/quickstart/
    https://app.userapp.io/#/docs/concepts/#signup-login
    http://www.hull.io/


    jekyll educational videos
    http://jekyll.tips/


    Docker container -
    docker pull jekyll/jekyll

    Version
    docker run

    docker run --rm --label=jekyll --volume=$(pwd):/srv/jekyll -it -p 127.0.0.1:4000:4000 jekyll/jekyll jekyll s

    -rm - remove container (snapshot of the image) after the image has finished running
    -volume - mount current directory as /srv/jekyll for it to consume
    -i interactive
    -t allocate pseudo tty (This will allow you to use the container like a traditional VM as long as the bash prompt is running)
    -p forward ports