+
+{{ content }}
\ No newline at end of file
diff --git a/localdocs/_posts/2022-09-20.html b/localdocs/_posts/2022-09-20.html
new file mode 100644
index 0000000..60ec52b
--- /dev/null
+++ b/localdocs/_posts/2022-09-20.html
@@ -0,0 +1,135 @@
+---
+layout: post
+author: Aaron
+title: How to create a static website with Jekyll and deploy it on GitHubPages
+---
+
+
+
+ docs will contain the content of the website later on.
+ localDev will contain our Jekyll project.
+
+
+
+
+
+ Move to the localDev-directory:
+
+
+ $ cd localDev
+
+
+
+
+
+
+
+ Create a new Jekyll-project at localDev-directory:
+
+
+ $ jekyll new --skip-bundle .
+
+ (make sure you got the dot)
+
+
+
+
+
+
+
+ Open the Gemfile that Jekyll created and comment out the line which starts with gem "jekyll"
+ Add the github-pages gem by editing the line starting with # gem "github-pages".
+ Change this line (# gem "github-pages") to:
+ gem "github-pages", "~> GITHUB-PAGES-VERSION", group: :jekyll_plugins
+ You can find the actual version of GitHub-pages here .
+ Now save and close the Gemfile.
+
+
+
+
+
+ Now still being at the localDev-directory, install the bundle:
+
+
+ $ bundle install
+
+
+ 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.
+
+
+ $ git checkout -b gh-pages
+
+
+
+
+
+
+ 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/
+ 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
+ https://docs.github.com/en/pages/quickstart
+ https://github.com/WickedJack99/website/settings/pages
+ https://wickedjack99.github.io/website/2022/09/20/jekyll_&_github.html
+ https://nav.hs-offenburg.de/pflichtnavi/erklaerung-zur-barrierefreiheit
+ https://duckduckgo.com/?q=german+english&t=newext&atb=v330-1&ia=web
+ https://www.markdownguide.org/basic-syntax
+ https://www.w3schools.com/html/default.asp
+ https://www.w3schools.com/html/tryit.asp?filename=tryhtml_figcaption
+ https://www.w3schools.com/html/tryit.asp?filename=tryhtml5_section
+
\ No newline at end of file
diff --git a/localdocs/_sass/main.scss b/localdocs/_sass/main.scss
new file mode 100644
index 0000000..74411a4
--- /dev/null
+++ b/localdocs/_sass/main.scss
@@ -0,0 +1,3 @@
+.current {
+ color: black;
+}
\ No newline at end of file
diff --git a/localdocs/about.html b/localdocs/about.html
new file mode 100644
index 0000000..4c76197
--- /dev/null
+++ b/localdocs/about.html
@@ -0,0 +1,9 @@
+---
+layout: default
+title: About
+---
+
About
+
+
What's uuuuuuuuuuuuuuuuuuuuuuuup!
+
My name is Aaron and I'm studying Applied Computer Science at the University of Applied Science Offenburg.
+
This is my first approach of a website using Jekyll.
\ No newline at end of file
diff --git a/localdocs/accessibility.html b/localdocs/accessibility.html
new file mode 100644
index 0000000..01196c8
--- /dev/null
+++ b/localdocs/accessibility.html
@@ -0,0 +1,5 @@
+---
+layout: law
+title: Accessibility
+---
+
{{ page.title }}
\ No newline at end of file
diff --git a/localdocs/assets/css/law.scss b/localdocs/assets/css/law.scss
new file mode 100644
index 0000000..4e445d8
--- /dev/null
+++ b/localdocs/assets/css/law.scss
@@ -0,0 +1,3 @@
+---
+---
+@import "main";
\ No newline at end of file
diff --git a/localdocs/assets/css/styles.scss b/localdocs/assets/css/styles.scss
new file mode 100644
index 0000000..4e445d8
--- /dev/null
+++ b/localdocs/assets/css/styles.scss
@@ -0,0 +1,3 @@
+---
+---
+@import "main";
\ No newline at end of file
diff --git a/localdocs/blog.html b/localdocs/blog.html
new file mode 100644
index 0000000..2385dc7
--- /dev/null
+++ b/localdocs/blog.html
@@ -0,0 +1,13 @@
+---
+layout: default
+title: Blog
+---
+
\ No newline at end of file
diff --git a/localdocs/imprint.html b/localdocs/imprint.html
new file mode 100644
index 0000000..0f60c15
--- /dev/null
+++ b/localdocs/imprint.html
@@ -0,0 +1,11 @@
+---
+layout: law
+title: Blog
+---
+
\ No newline at end of file
diff --git a/localdocs/privacy.html b/localdocs/privacy.html
new file mode 100644
index 0000000..7706465
--- /dev/null
+++ b/localdocs/privacy.html
@@ -0,0 +1,15 @@
+---
+layout: law
+title: Privacy
+---
+
Privacy Policy
+
Links to external websites
+
This website contains links to external websites. I have no access on the content of these websites
+ and take no responsibilities or liablities for the admissibility, correctness, presentation and completeness
+ of that content.
+
I'm informing you that with following those links, probably your IP-address will be recorded.
+
If you leave this website I recommend you to check out their Privacy-Policy before accessing their website.
+
+
Cookies :P
+
I'm hungry, give me some cookies please!
+
I don't use cookies but this site is hosted by GitHub Pages so maybe they use them.
\ No newline at end of file
diff --git a/localdocs/terms.html b/localdocs/terms.html
new file mode 100644
index 0000000..02f55f8
--- /dev/null
+++ b/localdocs/terms.html
@@ -0,0 +1,7 @@
+---
+layout: law
+title: Terms & Conditions
+---
+