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 @@
20 Sep 2022 - Aaron
- -20 Sep 2022 - Aaron
+$ 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 @@
-{{ page.date | date_to_string }} - {{ page.author }}
- -{{ content }} \ No newline at end of file + + + + +{{ 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 --- -$ 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