diff --git a/about/index.shtml b/about/index.shtml index 3635070..31c66cf 100644 --- a/about/index.shtml +++ b/about/index.shtml @@ -51,7 +51,7 @@
  • Work in a global environment with teams from all across the world

  • - Network Admin, Metropolitan Personnel, Inc. (June 2006 - Present) + Network Admin, Metropolitan Personnel, Inc. (June 2006 - March 2016) diff --git a/global.css b/global.css index 62090bf..9254521 100644 --- a/global.css +++ b/global.css @@ -141,6 +141,9 @@ img box-shadow: 0px 0px 8px #CDF8FF; } +#twfeed +{ margin-top: 20px; } + #wrapper { background-image: url('img/50black.png'); diff --git a/include/navbar.html b/include/navbar.html index c36257f..528fe34 100644 --- a/include/navbar.html +++ b/include/navbar.html @@ -9,7 +9,9 @@ PGP Fingerprint:
    CF30 A41A 0698 6B1F 6037 208A 3D21 FA83 9D9A 229F
    Public key: 9D9A229F - Tweets by @BradLaBoon - +
    + Tweets by @BradLaBoon + +
    diff --git a/js/twitter.js b/js/twitter.js new file mode 100644 index 0000000..61ddb77 --- /dev/null +++ b/js/twitter.js @@ -0,0 +1,17 @@ +(function() { + var loadTwitterFeed = function() { + if (!document.getElementById("twitter-wjs")) { + var fjs = document.getElementsByTagName("script")[0]; + var js = document.createElement("script"); + js.id = "twitter-wjs"; + js.src = "//platform.twitter.com/widgets.js"; + fjs.parentNode.insertBefore(js, fjs); + } + }; + + // Attach onload handler + if (window.addEventListener) + window.addEventListener("load", loadTwitterFeed, false); + else if (window.attachEvent) + window.attachEvent("onload", loadTwitterFeed); +})();