Fix links

This commit is contained in:
samaradel
2022-09-08 12:43:35 +02:00
parent 19e93c3988
commit 1d547e591f
4 changed files with 13 additions and 9 deletions

View File

@@ -10,7 +10,7 @@ taxonomies:
categories: [tech, cloud] categories: [tech, cloud]
extra: extra:
isVisible: true isVisible: true
imgPath: zero_people.png imgPath: zero_people_IT_is_the_future.png
--- ---
## Introduction ## Introduction

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1003 KiB

View File

@@ -62,7 +62,7 @@ Join The Developer Community
#### Tools #### Tools
<button onclick="window.location.href='https&#58;//library.threefold.me/info/threefold#/tokens/threefold__threefold_connect'"> <button onclick="openInNewTab('https&#58;//library.threefold.me/info/threefold#/tokens/threefold__threefold_connect')">
[ThreeFold Connect](https://library.threefold.me/info/threefold#/tokens/threefold__threefold_connect) [ThreeFold Connect](https://library.threefold.me/info/threefold#/tokens/threefold__threefold_connect)
<br> <br>
@@ -70,7 +70,7 @@ TFT Wallet, 2FA, & More
</button> </button>
<button onclick="window.location.href='https&#58;//dashboard.grid.tf/'"> <button onclick="openInNewTab('https&#58;//dashboard.grid.tf/')">
[Dashboard](https://dashboard.grid.tf/) [Dashboard](https://dashboard.grid.tf/)
<br> <br>
@@ -78,7 +78,7 @@ Portal & Capacity Explorer
</button> </button>
<button onclick="window.location.href='https&#58;//play.grid.tf'"> <button onclick="openInNewTab('https&#58;//play.grid.tf')">
[Weblet Playground](https://play.grid.tf) [Weblet Playground](https://play.grid.tf)
<br> <br>
@@ -88,7 +88,7 @@ Deploy a VM & More
#### Resources #### Resources
<button onclick="window.location.href='https&#58;//library.threefold.me/info/threefold#/'"> <button onclick="openInNewTab('https&#58;//library.threefold.me/info/threefold#/')">
[Library](https://library.threefold.me/info/threefold#/) [Library](https://library.threefold.me/info/threefold#/)
<br> <br>
@@ -96,7 +96,7 @@ Explore the Documentation
</button> </button>
<button onclick="window.location.href='https&#58;//library.threefold.me/info/manual/#/manual__manual3_home_new'"> <button onclick="openInNewTab('https&#58;//library.threefold.me/info/manual/#/manual__manual3_home_new')">
[Manual](https://library.threefold.me/info/manual/#/manual__manual3_home_new) [Manual](https://library.threefold.me/info/manual/#/manual__manual3_home_new)
<br> <br>
@@ -104,7 +104,7 @@ Get Started on the Grid
</button> </button>
<button onclick="window.location.href='https&#58;//github.com/'"> <button onclick="openInNewTab('https&#58;//github.com/')">
[GitHub](https://github.com/) [GitHub](https://github.com/)
<br> <br>
@@ -130,7 +130,7 @@ Check the Latest Updates
</button> </button>
<button onclick="window.location.href='https&#58;//intro.threefold.me'"> <button onclick="openInNewTab('https&#58;//intro.threefold.me')">
[Intro Docs](https://intro.threefold.me) [Intro Docs](https://intro.threefold.me)
<br> <br>
@@ -140,7 +140,7 @@ Perfect for Newcomers
#### Support & Help #### Support & Help
<button onclick="window.location.href='https&#58;//forum.threefold.io'"> <button onclick="openInNewTab('https&#58;//forum.threefold.io')">
[Forum](https://forum.threefold.io) [Forum](https://forum.threefold.io)
<br> <br>

View File

@@ -93,3 +93,7 @@ window.onload = function () {
document.getElementById("filter-btn").addEventListener('click', toggleFilter); document.getElementById("filter-btn").addEventListener('click', toggleFilter);
document.getElementById("mobile-learn-btn").addEventListener('click', toggleMenu); document.getElementById("mobile-learn-btn").addEventListener('click', toggleMenu);
} }
function openInNewTab(url) {
window.open(url, '_blank').focus()
}