diff --git a/docs/2022/09/20/how-to-create-githubpage.html b/docs/2022/09/20/how-to-create-githubpage.html index 3094332..888dac4 100644 --- a/docs/2022/09/20/how-to-create-githubpage.html +++ b/docs/2022/09/20/how-to-create-githubpage.html @@ -16,13 +16,12 @@

2022 Week 38 How to create a static website with Jekyll and deploy it on GitHubPages

-

20 Sep 2022 - Aaron

- -
+

20 Sep 2022 - Aaron

+

Prerequisits

- Install Git - Install Ruby + Install Git
+ Install Ruby
Install Jekyll and Bundler
$ gem install jekyll bundler diff --git a/docs/assets/css/blog.css b/docs/assets/css/blog.css new file mode 100644 index 0000000..83174aa --- /dev/null +++ b/docs/assets/css/blog.css @@ -0,0 +1 @@ +div.console{background-color:lightgray;color:black;padding-left:10px;padding-top:5px;padding-bottom:5px}div.outerDiv{padding-left:20px} diff --git a/docs/feed.xml b/docs/feed.xml index ffda377..b4a6722 100644 --- a/docs/feed.xml +++ b/docs/feed.xml @@ -1,8 +1,8 @@ -Jekyll2022-09-21T13:48:33+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.2022 Week 38 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/how-to-create-githubpage<div> +Jekyll2022-09-21T14:16:42+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.2022 Week 38 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/how-to-create-githubpage<div class="outerDiv"> <div id="prerequisits"> <h3>Prerequisits</h3> - Install <a href="https://git-scm.com/downloads" target="_blank">Git</a> - Install <a href="https://www.ruby-lang.org/en/documentation/installation/" target="_blank">Ruby</a> + Install <a href="https://git-scm.com/downloads" target="_blank">Git</a><br> + Install <a href="https://www.ruby-lang.org/en/documentation/installation/" target="_blank">Ruby</a><br> Install Jekyll and Bundler<br> <div class="console"> <code>$ gem install jekyll bundler</code> diff --git a/localdocs/_layouts/post.html b/localdocs/_layouts/post.html index 3419bc2..184a4d4 100644 --- a/localdocs/_layouts/post.html +++ b/localdocs/_layouts/post.html @@ -1,7 +1,15 @@ ---- -layout: default ---- -

{{ page.title }}

-

{{ page.date | date_to_string }} - {{ page.author }}

- -{{ content }} \ No newline at end of file + + + + + {{ page.title }} + + + + {% include navigation.html %} +

{{ page.title }}

+

{{ page.date | date_to_string }} - {{ page.author }}

+ {{ content }} + {% include footerNavbar.html %} + + \ No newline at end of file diff --git a/localdocs/_posts/2022-09-20-how-to-create-githubpage.html b/localdocs/_posts/2022-09-20-how-to-create-githubpage.html index 213b9f7..0004076 100644 --- a/localdocs/_posts/2022-09-20-how-to-create-githubpage.html +++ b/localdocs/_posts/2022-09-20-how-to-create-githubpage.html @@ -4,11 +4,11 @@ author: Aaron title: 2022 Week 38 How to create a static website with Jekyll and deploy it on GitHubPages --- -
+

Prerequisits

- Install Git - Install Ruby + Install Git
+ Install Ruby
Install Jekyll and Bundler
$ gem install jekyll bundler diff --git a/localdocs/_sass/blog.scss b/localdocs/_sass/blog.scss new file mode 100644 index 0000000..87df1e3 --- /dev/null +++ b/localdocs/_sass/blog.scss @@ -0,0 +1,11 @@ +div.console { + background-color: lightgray; + color: black; + padding-left: 10px; + padding-top: 5px; + padding-bottom: 5px; +} + +div.outerDiv { + padding-left: 20px; +} \ No newline at end of file diff --git a/localdocs/assets/css/blog.scss b/localdocs/assets/css/blog.scss new file mode 100644 index 0000000..504a3bb --- /dev/null +++ b/localdocs/assets/css/blog.scss @@ -0,0 +1,3 @@ +--- +--- +@import "blog"; \ No newline at end of file