diff --git a/README.md b/README.md new file mode 100644 index 0000000..c7696d2 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# Основной вебсайт + +![site](site.png) diff --git a/js/script.js b/js/script.js index baa7ef6..f57f588 100644 --- a/js/script.js +++ b/js/script.js @@ -3,50 +3,50 @@ $(document).ready(function(){ $("body").delay(500).fadeTo(500, 1); $(".mastodon").on( "click", function() { - window.location.href = "https://fosstodon.org/@alexanderzhirov"; + window.open("https://fosstodon.org/@alexanderzhirov"); }); $(".twitter").on( "click", function() { - window.location.href = "https://twitter.com/zhirofficial"; + window.open("https://twitter.com/zhirofficial"); }); $(".linkedin").on( "click", function() { - window.location.href = "https://www.linkedin.com/in/alexander-zhirov-34b6711a6"; + window.open("https://www.linkedin.com/in/alexander-zhirov-34b6711a6"); }); $(".facebook").on( "click", function() { - window.location.href = "https://www.facebook.com/azhirov1991"; + window.open("https://www.facebook.com/azhirov1991"); }); $(".instagram").on( "click", function() { - window.location.href = "https://www.instagram.com/alexanderzhirov"; + window.open("https://www.instagram.com/alexanderzhirov"); }); $(".git").on( "click", function() { - window.location.href = "https://git.zhirov.kz/alexander"; + window.open("https://git.zhirov.kz/alexander"); }); $(".github").on( "click", function() { - window.location.href = "https://github.com/AlexanderZhirov"; + window.open("https://github.com/AlexanderZhirov"); }); $(".telegram").on( "click", function() { - window.location.href = "https://t.me/alexanderzhirov"; + window.open("https://t.me/alexanderzhirov"); }); $(".solus").on( "click", function() { - window.location.href = "https://dev.getsol.us/p/alexanderzhirov"; + window.open("https://dev.getsol.us/p/alexanderzhirov"); }); $(".blog").on( "click", function() { - window.location.href = "https://blog.zhirov.kz"; + window.open("https://blog.zhirov.kz"); }); $(".ftp").on( "click", function() { - window.location.href = "https://ftp.zhirov.kz"; + window.open("https://ftp.zhirov.kz"); }); $(".email").on( "click", function() { - window.location.href = ""; + window.open(""); }); }); diff --git a/site.png b/site.png new file mode 100644 index 0000000..ecb5f84 Binary files /dev/null and b/site.png differ