Merge branch 'development' of https://github.com/threefoldfoundation/www_threefold_io into development
This commit is contained in:
@@ -1,3 +1,12 @@
|
||||
---
|
||||
title: "WELCOME TO THE"
|
||||
sort_by: "weight"
|
||||
|
||||
extra:
|
||||
subtitle: "People’s Internet"
|
||||
slogan: Join the peer-to-peer revolution
|
||||
imgPath: new_home_header.jpg
|
||||
|
||||
template: "index.html"
|
||||
---
|
||||
Powered by the ThreeFold blockchain the People’s Internet is the layer 0 infrastructure for an open source P2P Internet owned by humanity.
|
||||
|
||||
BIN
content/home/new_home_header.jpg
Normal file
BIN
content/home/new_home_header.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 119 KiB |
@@ -1,6 +1,6 @@
|
||||
---
|
||||
title: "Expand the People’s Internet"
|
||||
|
||||
weight: 1
|
||||
extra:
|
||||
subtitle: "and earn TFT"
|
||||
button: Become a Farmer
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
---
|
||||
title: DECENTRALIZE YOUR
|
||||
|
||||
weight: 2
|
||||
extra:
|
||||
subtitle: "DATA AND WORKLOADS"
|
||||
imgPath: network_new.jpg
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
<!-- End Twitter universal website tag code -->
|
||||
|
||||
|
||||
<div id="content" class="p-4 pt-12 sm:p-12 md:p-16 lg:p-20 overflow-hidden">
|
||||
<div id="content" class="">
|
||||
{% block content %}{% endblock %}
|
||||
</div>
|
||||
<div class="p-8">
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<!-- Landing page template, has a banner and rows of page summaries -->
|
||||
<main>
|
||||
<div class="container-fluid sm:pxi-0 mx-auto overflow-x-hidden">
|
||||
|
||||
{% include "partials/header_sec.html" %}
|
||||
{% include "partials/partnerships.html" %}
|
||||
</div>
|
||||
</main>
|
||||
|
||||
66
templates/partials/header_sec.html
Normal file
66
templates/partials/header_sec.html
Normal file
@@ -0,0 +1,66 @@
|
||||
{% set home = get_section(path="home/_index.md") %}
|
||||
|
||||
|
||||
{% if current_path == '/' %}
|
||||
|
||||
<div class="flex flex-wrap text-center lg:text-left lg:py-20 -mx-2">
|
||||
<div class="px-3 lg:mt-5 order-1 lg:order-none mx-auto text-center">
|
||||
<h2 class="
|
||||
lg:text-6xl
|
||||
font-normal
|
||||
uppercase
|
||||
mb-6
|
||||
mt-10
|
||||
leading-none
|
||||
font-heading
|
||||
">
|
||||
{{ home.title }}
|
||||
<span class="block leading-none font-bold">{{ home.extra.subtitle }}</span>
|
||||
</h2>
|
||||
|
||||
<h3 class="text-4xl leading-none font-light">{{ home.extra.slogan }}</h3>
|
||||
<div class="mb-8 mx-auto lg:text-2xl text-xl max-w-3xl">{{ home.content | safe }}</div>
|
||||
{% if home.extra.button %}
|
||||
{% if home.extra.link is containing('http')%}
|
||||
<a target="_blank" class="
|
||||
text-black
|
||||
inline-block
|
||||
bg-white
|
||||
lg:text-lg
|
||||
learn-button
|
||||
hover:bg-gray-400
|
||||
px-12
|
||||
py-1
|
||||
mr-5
|
||||
mb-4
|
||||
border-2
|
||||
shadow
|
||||
border-black
|
||||
capitalize
|
||||
" href="{{ home.extra.link }}">{{ home.extra.button }}</a>
|
||||
{% else %}
|
||||
<a class="
|
||||
text-black
|
||||
inline-block
|
||||
bg-white
|
||||
lg:text-lg
|
||||
learn-button
|
||||
hover:bg-gray-400
|
||||
px-12
|
||||
py-1
|
||||
mr-5
|
||||
mb-4
|
||||
border-2
|
||||
shadow
|
||||
border-black
|
||||
capitalize
|
||||
" href="{{ get_url(path=home.extra.link)}}">{{ home.extra.button }}</a>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
</div>
|
||||
{% set url = get_url(path='/' ~ home.relative_path |
|
||||
replace(from='_index.md', to=home.extra.imgPath)) %}
|
||||
<img class="order-2 lg:order-none mx-auto w-full" src="{{ url }}" />
|
||||
</div>
|
||||
|
||||
{% endif %}
|
||||
Reference in New Issue
Block a user