Jekyll2022-09-20T19:44:36+02:00/feed.xmlMr.Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description.How to create a static website with Jekyll and deploy it on GitHubPages2022-09-20T00:00:00+02:002022-09-20T00:00:00+02:00/2022/09/20/jekyll_&_github<p>Create a GitHub-account: https://github.com/</p> <p>Create a repository on GitHub: https://github.com/ (It has to be public if you use GitHub Free, note that your code will be visible to everyone!)</p> <p>Clone the repository to a local directory:</p> <p>SSH</p> <blockquote> <p>$ git clone –recursive $SSH_URL</p> </blockquote> <p>HTTPS</p> <blockquote> <p>$ git -c http.sslVerify=false clone –recursive $HTTPS_URL</p> </blockquote> <p>Create two directories: docs and localDev.</p> <blockquote> <p>$ mkdir docs</p> <p>$ mkdir localDev</p> </blockquote> <p>Follow instructions on: https://docs.github.com/en/pages/setting-up-a-github-pages-site-with-jekyll/creating-a-github-pages-site-with-jekyll</p> <p>Deploy: https://jekyllrb.com/docs/step-by-step/10-deployment/</p> <p>JEKYLL_ENV=production bundle exec jekyll build</p>AaronCreate a GitHub-account: https://github.com/