From 14798d797aaad8ec11122c0ce6884c00a027061a Mon Sep 17 00:00:00 2001 From: Matthew Grove Date: Wed, 5 Dec 2018 10:57:48 +0000 Subject: [PATCH] Replace iFrame with jQuery load() --- computer-science-blog/index.html | 1 + computer-science-blog/index.html~ | 110 -------------------------- computer-science-blog/scripts/home.js | 6 ++ 3 files changed, 7 insertions(+), 110 deletions(-) delete mode 100644 computer-science-blog/index.html~ create mode 100644 computer-science-blog/scripts/home.js diff --git a/computer-science-blog/index.html b/computer-science-blog/index.html index 5a95af1..e8cea21 100644 --- a/computer-science-blog/index.html +++ b/computer-science-blog/index.html @@ -68,6 +68,7 @@

The current date is: unknown

+

_____AREA_OF_STUDY_____ Presentation

diff --git a/computer-science-blog/index.html~ b/computer-science-blog/index.html~ deleted file mode 100644 index f01a317..0000000 --- a/computer-science-blog/index.html~ +++ /dev/null @@ -1,110 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - Computer Science Blog | Matthew Grove - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - -
- -
-
- -
-
- -

_____AREA_OF_STUDY_____ Presentation

- - -
-
- - -
- - - -
-
-
- - -
- - - - - - - -
-
- -
- - diff --git a/computer-science-blog/scripts/home.js b/computer-science-blog/scripts/home.js new file mode 100644 index 0000000..c28adb3 --- /dev/null +++ b/computer-science-blog/scripts/home.js @@ -0,0 +1,6 @@ +$(document).ready(function(){ + // include navbar + $(".blog-insert").load("pages/blog.html", function(){ + + }); +});