From cd39ec9922da7c7215ddecfeb46021f42bfb4120 Mon Sep 17 00:00:00 2001 From: samtaggart Date: Mon, 14 Oct 2024 15:12:31 +0300 Subject: [PATCH 1/4] Fix typo on homepage --- content/home/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/home/index.md b/content/home/index.md index 1a10661dc..01d6afa66 100644 --- a/content/home/index.md +++ b/content/home/index.md @@ -206,7 +206,7 @@ For years, ThreeFold has been quietly and steadily developing its innovative tec
-We are currently fundraising for the next stage of our project – major commercial expansion. This will involved the launch of the $INCA token on the Solana blockchain. If you are interested in learning more or taking part, please reach out. +We are currently fundraising for the next stage of our project – major commercial expansion. This will involve the launch of the $INCA token on the Solana blockchain. If you are interested in learning more or taking part, please reach out.
From c61ea6a88d6cf5cccfd87c622f3f92a12bf59f48 Mon Sep 17 00:00:00 2001 From: ehab-hassan Date: Tue, 15 Oct 2024 11:07:20 +0300 Subject: [PATCH 2/4] fix responsive --- content/about/index.md | 12 ++++++------ content/home/index.md | 7 +++++-- css/index.css | 22 ++++++++++++++++++++-- templates/shortcodes/row.html | 14 +++++++------- 4 files changed, 38 insertions(+), 17 deletions(-) diff --git a/content/about/index.md b/content/about/index.md index 2a7b14697..b150098ad 100644 --- a/content/about/index.md +++ b/content/about/index.md @@ -181,7 +181,7 @@ We are a dedicated group committed to advancing a new digital era. Some of us ha {% row( style="") %} -
+
@@ -208,7 +208,7 @@ We are a dedicated group committed to advancing a new digital era. Some of us ha ||| -
+
@@ -235,7 +235,7 @@ We are a dedicated group committed to advancing a new digital era. Some of us ha ||| -
+
@@ -264,7 +264,7 @@ We are a dedicated group committed to advancing a new digital era. Some of us ha {% row( style="mbottom") %} -
+
@@ -290,7 +290,7 @@ We are a dedicated group committed to advancing a new digital era. Some of us ha ||| -
+
@@ -316,7 +316,7 @@ We are a dedicated group committed to advancing a new digital era. Some of us ha ||| -
+
diff --git a/content/home/index.md b/content/home/index.md index 1a10661dc..cc8143863 100644 --- a/content/home/index.md +++ b/content/home/index.md @@ -152,7 +152,8 @@ ThreeFold’s technological infrastructure will empower many projects and initia
-ThreeFold is working with the Zanzibar Communication Corporation (ZICTIA), on behalf of the Zanzibar government, to create the world’s first 100% Digital Free Zone – accessible and affordable for all. The announcement was made August 2023, and progress has been ongoing behind the scenes since then. Updates expected Q4 2024. +ThreeFold is working with the Zanzibar Communication Corporation (ZICTIA), on behalf of the Zanzibar government, to create the world’s first 100% Digital Free Zone – accessible and affordable for all. The announcement was made August 2023, and progress has been ongoing behind the scenes since then. Updates expected Q4 2024. +
@@ -174,9 +175,11 @@ ThreeFold is working with the Zanzibar Communication Corporation (ZICTIA), on be #### **Tanzanian Sovereign Internet**
- + In January 2024, ThreeFold announced in collaboration with The ICT Commission of Tanzania and Holochain a collaboration to deploy sovereign Internet in Tanzania, along with the introduction of coding academies and innovation hubs. The Dunia Yetu cooperative is being set up and efforts will ramp up in 2025. + +
diff --git a/css/index.css b/css/index.css index f477951ec..b7a8ef3d3 100644 --- a/css/index.css +++ b/css/index.css @@ -219,7 +219,7 @@ background-color:#5596f5 !important; } .mycard{ - height: 240px !important; + height: 300px !important; } @@ -562,8 +562,18 @@ header { @media (min-width: 1024px){ h2 { font-size: 3.5rem; - } + } + } + +@media (max-width: 1024px) { + + .mycard{ + height: auto !important; + } + +} + @media (max-width: 640px) { .banner h2 { font: 600 7vw/10vw; @@ -582,6 +592,10 @@ header { -ms-transform:rotate(90deg); transform: rotate(90deg); } + + .mycard{ + height: auto !important; + } } @media (max-width: 480px) { @@ -616,6 +630,10 @@ header { height: auto !important; } + .mycard{ + height: auto !important; + } + .key_card{ height: auto; } diff --git a/templates/shortcodes/row.html b/templates/shortcodes/row.html index 3abc1ff17..f8eaef6a5 100644 --- a/templates/shortcodes/row.html +++ b/templates/shortcodes/row.html @@ -42,7 +42,7 @@ Parameters: {% set columns = body | safe | markdown | split(pat="|||") %} -{% set row_class = "relative lg:p-4 p-1 flex flex-col sm:grid sm:grid-cols-2 sm:gap-10 xl:flex xl:flex-row"%} +{% set row_class = "relative lg:p-4 p-1 flex flex-col xl:flex xl:flex-row"%} {% if 2 < columns | length %} @@ -51,7 +51,7 @@ Parameters: {% set row_class = row_class ~ " lg:items-center" %} {% endif %} -{% set col_class = "flex-1 mb-6 md:mb-0 px-2 md:px-4" %} +{% set col_class = "flex-1 mb-6 md:mb-0 px-2 md:px-4 w-full" %} {% set row_id = '' %} {% if id %} @@ -74,7 +74,7 @@ Parameters: {% if "center" in style %} {% set row_class = row_class ~ " text-center mx-auto justify-center" %} - {% set col_class = col_class ~ " flex-1 m-2 lg:m-0" %} + {% set col_class = col_class ~ " m-2 lg:m-0" %} {% endif %} {% if "text-white" in style %} @@ -84,23 +84,23 @@ Parameters: {% if "margin" in style %} {% set row_class = row_class ~ " lg:py-24 py-10" %} - {% set col_class = col_class ~ " flex-1 m-2 lg:m-0" %} + {% set col_class = col_class ~ " m-2 lg:m-0" %} {% endif %} {% if "header" in style %} - {% set row_class = row_class ~ " h-auto md:h-screen mt-4 lg:mt-0" %} + {% set row_class = row_class ~ " h-auto xl:h-screen md:h-auto mt-4 lg:mt-0" %} {% set col_class = col_class ~ " mt-3" %} {% endif %} {% if "mtop" in style %} {% set row_class = row_class ~ " lg:pt-24 pt-2" %} - {% set col_class = col_class ~ " flex-1 m-2 lg:m-0" %} + {% set col_class = col_class ~ " m-2 lg:m-0" %} {% endif %} {% if "mbottom" in style %} {% set row_class = row_class ~ " lg:pb-24" %} - {% set col_class = col_class ~ " flex-1 m-2 lg:m-0" %} + {% set col_class = col_class ~ " m-2 lg:m-0" %} {% endif %} From 1b052a80658355da5af43b0010e72a170faa78ae Mon Sep 17 00:00:00 2001 From: ehab-hassan Date: Tue, 15 Oct 2024 11:15:48 +0300 Subject: [PATCH 3/4] fix responsive --- content/technology/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content/technology/index.md b/content/technology/index.md index d56ec970c..9a352d79c 100644 --- a/content/technology/index.md +++ b/content/technology/index.md @@ -14,6 +14,8 @@ extra: {% row(style="header reverse") %} +
+ #### ENABLING A GLOBAL NETWORK OF INTERCONNECTED NODES ## **A Secure & Sovereign Infrastructure Layer for the Internet** From 886572930cab6a1d7effe7e35c1a33138f839858 Mon Sep 17 00:00:00 2001 From: samtaggart Date: Fri, 25 Oct 2024 11:39:31 +0300 Subject: [PATCH 4/4] Update Sasha title --- content/people/sasha_astiadi/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/people/sasha_astiadi/index.md b/content/people/sasha_astiadi/index.md index 7ab47f9f7..8bae31595 100644 --- a/content/people/sasha_astiadi/index.md +++ b/content/people/sasha_astiadi/index.md @@ -1,7 +1,7 @@ --- title: Sasha Astiadi weight: 2 -description: Websites +description: Web Operations taxonomies: people: [sasha_astiadi] memberships: [team]