diff --git a/docs/2022/09/20/jekyll_&_github.html b/docs/2022/09/20/jekyll_&_github.html
deleted file mode 100644
index d9213a8..0000000
--- a/docs/2022/09/20/jekyll_&_github.html
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
- How to create a static website with Jekyll and deploy it on GitHubPages
-
-
-
-
-
- Home
-
- About
-
- Blog
-
-
- How to create a static website with Jekyll and deploy it on GitHubPages
-20 Sep 2022 - Aaron
-
-Create a GitHub-account: https://github.com/
-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!)
-Clone the repository to a local directory:
-SSH
-$ git clone --recursive $SSH_URL
-HTTPS
-$ git -c http.sslVerify=false clone --recursive $HTTPS_URL
-Create two directories: docs and localDev.
-$ mkdir docs
-$ mkdir localDev
-Follow instructions on: https://docs.github.com/en/pages/setting-up-a-github-pages-site-with-jekyll/creating-a-github-pages-site-with-jekyll
-Deploy: https://jekyllrb.com/docs/step-by-step/10-deployment/
-JEKYLL_ENV=production bundle exec jekyll build
-
-
- Terms
-
- Privacy
-
- Blog
-
- Imprint
-
-
-
-
\ No newline at end of file
diff --git a/docs/accessibility.html b/docs/accessibility.html
new file mode 100644
index 0000000..4204cc7
--- /dev/null
+++ b/docs/accessibility.html
@@ -0,0 +1,31 @@
+
+
+
+
+ Accessibility
+
+
+
+
+
+ Home
+
+ About
+
+ Blog
+
+
+ Accessibility
+
+
+ Terms
+
+ Privacy
+
+ Blog
+
+ Imprint
+
+
+
+
\ No newline at end of file
diff --git a/docs/blog.html b/docs/blog.html
index a77ace4..33ff169 100644
--- a/docs/blog.html
+++ b/docs/blog.html
@@ -19,10 +19,6 @@
diff --git a/docs/feed.xml b/docs/feed.xml
index 8348f33..3d1fb5b 100644
--- a/docs/feed.xml
+++ b/docs/feed.xml
@@ -1,14 +1 @@
-Jekyll 2022-09-20T23:27:59+02:00 /feed.xml Mr. 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 GitHubPages 2022-09-20T00:00:00+02:00 2022-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/</p>
-<p>(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>
-<p>$ git clone --recursive $SSH_URL</p>
-<p>HTTPS</p>
-<p>$ git -c http.sslVerify=false clone --recursive $HTTPS_URL</p>
-<p>Create two directories: docs and localDev.</p>
-<p>$ mkdir docs</p>
-<p>$ mkdir localDev</p>
-<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> Aaron Create a GitHub-account: https://github.com/ 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!) Clone the repository to a local directory: SSH $ git clone --recursive $SSH_URL HTTPS $ git -c http.sslVerify=false clone --recursive $HTTPS_URL Create two directories: docs and localDev. $ mkdir docs $ mkdir localDev Follow instructions on: https://docs.github.com/en/pages/setting-up-a-github-pages-site-with-jekyll/creating-a-github-pages-site-with-jekyll Deploy: https://jekyllrb.com/docs/step-by-step/10-deployment/ JEKYLL_ENV=production bundle exec jekyll build
\ No newline at end of file
+Jekyll 2022-09-21T11:49:25+02:00 /feed.xml Mr. 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.
\ No newline at end of file
diff --git a/localdocs/_posts/2022-09-20.html b/localdocs/_posts/2022-09-20.html
index 60ec52b..d02e45b 100644
--- a/localdocs/_posts/2022-09-20.html
+++ b/localdocs/_posts/2022-09-20.html
@@ -99,27 +99,71 @@ title: How to create a static website with Jekyll and deploy it on GitHubPages
$ bundle install
- Optionally you can make changes at the _config.yml file.
+ Optionally you can make changes at the _config.yml file.
- Optionally you can create another branch called gh-pages from where GitHub Pages will take the website-files.
+ Follow this guide to learn Jekyll. Make sure that all files and directories you create are in the localDev-directory.
+ Note that building locally will not work according to commenting out gem "Jekyll" at the Gemfile. (Atm I didn't check if you can let it in and bundle install to allow local building)
+
+
+
+
+
+ After creating all necessary files and dirs, you can make a production build:
+ Note that all files at _site will be cleared!
- $ git checkout -b gh-pages
+ $ JEKYLL_ENV=production bundle exec jekyll build
+
+
+ Your Jekyll-project was now build and stored at _site.
+ Now move the content of the localDev/_site to docs:
+
+
+ $ mv /localDev/_site docs
+
+
+ And push your changes to your central GitHub-Repository:
+
- Follow instructions on: https://docs.github.com/en/pages/setting-up-a-github-pages-site-with-jekyll/creating-a-github-pages-site-with-jekyll
- Deploy: https://jekyllrb.com/docs/step-by-step/10-deployment/
- JEKYLL_ENV=production bundle exec jekyll build
- https://jekyllrb.com/docs/step-by-step/01-setup/
- https://jekyllrb.com/docs/structure/
+
+ Now publish your repository on GitHub Pages .
+ Select your branch and as folder /docs and hit Save.
+ Now you have to wait, this can take up to 10 minutes.
+ On the top of the page a box will appear with the url of your website.
+
+ Happy developing!
+
+
+
+
+ Sources:
+
+
+
+
+
https://docs.github.com/en/pages/setting-up-a-github-pages-site-with-jekyll/testing-your-github-pages-site-locally-with-jekyll
https://docs.github.com/en/pages/setting-up-a-github-pages-site-with-jekyll/creating-a-github-pages-site-with-jekyll
https://docs.github.com/en/get-started/quickstart/set-up-git
diff --git a/localdocs/blog.html b/localdocs/blog.html
index 2385dc7..e754f3e 100644
--- a/localdocs/blog.html
+++ b/localdocs/blog.html
@@ -7,7 +7,7 @@ title: Blog
{% for post in site.posts %}
-
+
{% endfor %}
\ No newline at end of file