diff --git a/content/team/_index.md b/content/team/_index.md new file mode 100644 index 0000000..69df478 --- /dev/null +++ b/content/team/_index.md @@ -0,0 +1,8 @@ ++++ +title = "Team" +sort_by = "weight" +template = "section.html" +page_template = "page.html" ++++ + +Welcome to our team section. Meet the people behind our organization. diff --git a/content/team/adnan_fatayerji.md b/content/team/adnan_fatayerji.md new file mode 100644 index 0000000..2ee52b7 --- /dev/null +++ b/content/team/adnan_fatayerji.md @@ -0,0 +1,9 @@ ++++ +title = "Adnan Fatayerj" +description = "Co-Founder" +weight = 2 +[extra] +image = "/images/team/adnan_fatayerji.jpg" ++++ + +Honored to be part of a team that has the potential to make the world a better place by connecting billions of people to a new, accessible, data sovereign and environmentally conscious internet. A social entrepreneur, plant based warrior and a sovereign digital economy advocate with a passion for music creation and collaboration. Adnan has been based in the United Arab Emirates for the past 20 years, during which he has built successful grass-root businesses and invested startups in various sectors. At ThreeFold Adnan is responsible for driving the ThreeFold Foundation Ecosystem. Adnan is also the CEO of the @Mazraa Cooperative which is a founding farm and P2P Cloud Capacity provider on the ThreeFold Network. \ No newline at end of file diff --git a/content/team/jan_de_landtsheer.md b/content/team/jan_de_landtsheer.md new file mode 100644 index 0000000..3ce6cf6 --- /dev/null +++ b/content/team/jan_de_landtsheer.md @@ -0,0 +1,9 @@ ++++ +title = "Jan De Landtsheer" +description = "Co-Founder & CTO" +weight = 3 +[extra] +image = "/images/team/jan_de_landtsheer.jpeg" ++++ + +Wandering the Net since it's inception (www wasn't even a thing back then... and yes, I'm that old), I have experienced the (r)evolution of the Internet in steps going backward in terms of accessibility, bias and width. It seems to me, by the effect of personalized search, directed ads, filtered and hidden information, that the Internet has become so much smaller, narrowing and enforcing biased views. That needs to be addressed. The Net needs to become that vast resource of unbiased knowledge, so that people can start thinking for themselves again. That's why I'm here, to be part of a group of guardians who's purpose is to equalize all views so that people can really understand viewpoints instead of being just judgemental. Techie at heart, having lived professionally in the tech basements of the Internet, I can help and I will help. Education for all is the only path to a better world. Count me in. diff --git a/content/team/kristof_de_spiegeleer.md b/content/team/kristof_de_spiegeleer.md new file mode 100644 index 0000000..4b2b67d --- /dev/null +++ b/content/team/kristof_de_spiegeleer.md @@ -0,0 +1,9 @@ ++++ +title = "Kristof de Spiegeleer" +description = "Co-Founder & CEO" +weight = 1 +[extra] +image = "/images/team/kristof_de_spiegeleer.jpeg" ++++ + +Humanist & motivated entrepreneur, passionate to help make the world a better place. Kristof strongly believes there is need for a neutral internet owned by millions. We dream about a world where everyone can be happy, with respect for each other and the world’s resources. A world where we dare to love ourselves and we don’t have to be scared about our future. A world where we don’t need to be a product and we have learned to collaborate with openness and trust.
More info on library.threefold.me \ No newline at end of file diff --git a/static/css/main.css b/static/css/main.css index 6117469..4720aaa 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -15,6 +15,73 @@ html { -webkit-text-size-adjust: 100%; /* 2 */ } + /* Light mode (default) */ + body { + background-color: #f3f4f6; + color: #1f2937; + } + header nav { + background-color: #1f2937; + color: #f9fafb; + } + footer { + background-color: #ffffff; + } + footer p { + color: #6b7280; + } + + /* Dark mode */ + html.dark body { + background-color: #111827 !important; + color: #f9fafb !important; + } + html.dark header nav { + background-color: #1f2937 !important; + } + html.dark footer { + background-color: #1f2937 !important; + } + html.dark footer p { + color: #9ca3af !important; + } + html.dark a { + color: #60a5fa !important; + } + html.dark a:hover { + color: #93c5fd !important; + } + html.dark .bg-gray-100 { + background-color: #111827 !important; + } + html.dark .bg-white { + background-color: #1f2937 !important; + } + html.dark .text-gray-900 { + color: #f9fafb !important; + } + html.dark .text-gray-500 { + color: #9ca3af !important; + } + html.dark .border-gray-200 { + border-color: #374151 !important; + } + html.dark button.bg-gray-800 { + background-color: #111827 !important; + } + html.dark button.hover\:bg-gray-700:hover { + background-color: #374151 !important; + } + + /* Transition effects */ + html.transition, + html.transition *, + html.transition *:before, + html.transition *:after { + transition: all 0.3s ease-in-out !important; + transition-delay: 0 !important; + } + /* Sections ========================================================================== */ diff --git a/static/images/team/adnan_fatayerji.jpg b/static/images/team/adnan_fatayerji.jpg new file mode 100644 index 0000000..a1ab811 Binary files /dev/null and b/static/images/team/adnan_fatayerji.jpg differ diff --git a/static/images/team/jan_de_landtsheer.jpeg b/static/images/team/jan_de_landtsheer.jpeg new file mode 100644 index 0000000..577d901 Binary files /dev/null and b/static/images/team/jan_de_landtsheer.jpeg differ diff --git a/static/images/team/kristof_de_spiegeleer.jpeg b/static/images/team/kristof_de_spiegeleer.jpeg new file mode 100644 index 0000000..72d6365 Binary files /dev/null and b/static/images/team/kristof_de_spiegeleer.jpeg differ diff --git a/templates/base.html b/templates/base.html index 9fc7cfd..bab8dfa 100644 --- a/templates/base.html +++ b/templates/base.html @@ -6,74 +6,7 @@ {% block title %}Zola with Tailwind CSS{% endblock %} - + {% block head %}{% endblock %} diff --git a/templates/index.html b/templates/index.html index dd30d15..bc4144f 100644 --- a/templates/index.html +++ b/templates/index.html @@ -27,7 +27,7 @@ {% if section is defined and section.pages is defined %} -
+ {% endif %} {% endblock %} diff --git a/templates/partials/navigation.html b/templates/partials/navigation.html index a8a1821..92afb80 100644 --- a/templates/partials/navigation.html +++ b/templates/partials/navigation.html @@ -27,6 +27,7 @@
--> Blog + Team @@ -90,6 +91,7 @@ --> Blog + Team Zola Docs