update developer page

This commit is contained in:
2021-10-31 15:36:17 +02:00
parent 30ed339f1e
commit 619d8d31c2
4 changed files with 30 additions and 6 deletions

View File

@@ -0,0 +1,19 @@
---
id: developer_cta3
title: OUR
subtitle : DEVELOPER RESOURCES
button: Explore Documentation
link: ''
---
ThreeFold is here to build the open-source Internet and Cloud infrastructure.
<br>
The documentation helps you build on ThreeFold by introducing you to some foundational concepts as well as our development stacks. Were also building tutorials to get you up and running.
<br>
Inspired by the open-source movement, everything at ThreeFold is open to be audited, extended and improved. If you have any feedback, please reach out with a GitHub issue or on our [telegram.](https://t.me/threefoldnews)

View File

@@ -13,6 +13,6 @@ header_altImg: threefold
header_excerpt: A builders manual for ThreeFold. Built by visionaries, for visionaries. header_excerpt: A builders manual for ThreeFold. Built by visionaries, for visionaries.
brandPanel3: developer_brandPanel3 brandPanel3: developer_brandPanel3
brandPanel2 : developer_brandPanel2 brandPanel2 : developer_brandPanel2
cta: developer_cta2 cta3 : developer_cta3
--- ---

View File

@@ -334,7 +334,7 @@
<!-- developer --> <!-- developer -->
<div <div
class="w-full mx-auto lg:mt-20 lg:p-20" class="w-full mx-auto lg:mt-20 lg:p-20"
v-else-if="id == 'developer'" v-else-if="id == 'developer' && lastCta"
> >
<h2 <h2
v-if="cta.title" v-if="cta.title"
@@ -348,10 +348,10 @@
" "
> >
{{ cta.title }} {{ cta.title }}
<span class="font-bold">{{ cta.title2 }}</span> <span class="font-bold">{{ cta.subtitle }}</span>
</h2> </h2>
<div v-html="cta.content" class="mt-6 mb-8 lg:text-2xl max-w-4xl mx-auto"></div> <div v-html="cta.content" class="mt-6 mb-8 lg:text-2xl max-w-4xl mx-auto"></div>
<g-image :src="cta.image" class="lg:my-20 mx-auto" />
<a <a
class=" class="
inline-block inline-block

View File

@@ -201,7 +201,7 @@
<CallToAction <CallToAction
:id="$page.markdownPage.id" :id="$page.markdownPage.id"
v-if="$page.markdownPage.cta3" v-if="$page.markdownPage.cta3 && $page.markdownPage.id !== 'developer'"
:cta="$page.markdownPage.cta3" :cta="$page.markdownPage.cta3"
:lastCta="true" :lastCta="true"
/> />
@@ -282,7 +282,12 @@
v-if="$page.markdownPage.brandPanel3 && $page.markdownPage.id == 'developer'" v-if="$page.markdownPage.brandPanel3 && $page.markdownPage.id == 'developer'"
:brandPanel3="true" :brandPanel3="true"
/> />
<CallToAction
:id="$page.markdownPage.id"
v-if="$page.markdownPage.cta3 && $page.markdownPage.id == 'developer'"
:cta="$page.markdownPage.cta3"
:lastCta="true"
/>
<BrandPanel <BrandPanel
:id="$page.markdownPage.id" :id="$page.markdownPage.id"