diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..499540b
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,28 @@
+*dSYM/
+publisher/publish
+install_publisher
+.vmodules/
+vex_webserver
+publishtools/publishtools
+.vscode
+*.log
+!.env.example
+.cache
+.DS_Store
+src/.temp
+content/news
+content/person
+content/project
+!.env.example
+.env
+.env.*
+yarn.lock
+.installed
+package-lock.json
+dist
+.temp
+run*
+install*
+public
+static/css
+tailwindcss
\ No newline at end of file
diff --git a/.gitpod.yml b/.gitpod.yml
new file mode 100644
index 0000000..fae6947
--- /dev/null
+++ b/.gitpod.yml
@@ -0,0 +1,7 @@
+# This configuration file was automatically generated by Gitpod.
+# Please adjust to your needs (see https://www.gitpod.io/docs/config-gitpod-file)
+# and commit this file to your remote git repository to share the goodness with others.
+
+tasks:
+ - init: sh build
+ command: sh build
diff --git a/README.md b/README.md
index e0d2925..b654a21 100644
--- a/README.md
+++ b/README.md
@@ -1 +1,106 @@
-# www_ourparadise
\ No newline at end of file
+# OURWORLD NOMAD Website
+
+wesite on https://nomads.ourworld.tf/
+
+## About
+
+A website created using Zola, a static site generator.
+
+- The contents of the pages reside in the markdown files in /content (written in CommmonMark)
+- The pages are rendered using HTML templates with Tailwind CSS framework in /templates
+
+## Getting Started
+
+This repository is meant to use as a template for static sites.
+
+To use this repository as a template, simply:
+
+- clone repository
+- add your own content to templates directory (see more below)
+- [install Zola](https://www.getzola.org/documentation/getting-started/installation/),
+- run `npm install` to install dependencies
+- run `npm run start`
+
+## How to create pages using this template
+
+### Structure of the content directory
+
+Every index.md file in a content directory corresponds to a page, and the landing page is content/\_index.md.
+The path of each page is simply its path relavant to the root of the content directory.
+
+Ex:
+content/\_index.md -> yoururl.com/
+content/blog/\_index.md -> yoururl.com/blog
+content/careers/index.md or content/careers.md -> yoururl.com/careers
+
+### Section Templates
+
+#### Blog.html
+
+The blog page is created by default if there is a blog folder in the content directory. The blog page consists of a featured post row, a paginated grid of posts sorted by recency, and a side nav of post categories and featured posts.
+
+Blog posts can have categories, and can be filtered by said categries. To add a new category simply define the posts category in the yaml header of the blog's index.md file. See /content/blog/2019/01/post-3/index.md for example. The side navigation and category based listing will be automatically updated.
+
+To make a blog post featured, simply add an isFeatured attribute to the yaml header of the blog post. The most recent featured blog post wiil be displayed on the heading row of the blog page, and the rest will be displayed under featured posts in the side nav. See /content/blog/2019/03/post-5/index.md for implementation.
+
+#### Section.html
+
+The default section template, displays section body without styling (except for margins), and displays subpages of the section below. The subpages of the page are displayed as small summaries of pages with title, description, and categories, as rendered by partials/pageBox.html. The subpages are grouped by the taxonomy name passed in as the "group_pages_by" extra attribute, defined in the section's yaml header.
+
+### Creating custom pages
+
+To create your own page, simply create a markdwn file following the examples provided above.
+By default, the markdown file will be displayed plainly as it is.
+
+#### Page templates
+
+If you wish to display your markdown files in a specific page template, simply define the template you would like to use in the yaml header of your markdown file. For instance, the blogPage.html template displays blog posts with author info, date, side margins, and a hero image on top of the post. See any blog page in /content for implementation.
+
+### Shortcodes
+
+To give website creators freedom in styling without necessitating getting outside of the /content directory and in to the html files, the template has a few features.
+
+- #### row.html shortcode
+
+Markdown only goes vertical, but this shortcode allows one to add horizontal elements to their web pages. Simply use the {% row() %} {% end %} syntax and place your content in between. The row shortcode can also take a bgPath parameter if you want your row to have a background. (see /content/careers/index.html)
+
+You can create columns in your row by using three vertical bars. ( ||| )
+You can fill in your columns with regular markdown, but they can also be empty.
+
+- #### menu.html
+
+Just like row, menu renders a row with columns split by ( ||| ). However, menu is specifically used to create menu objects for expandible header items. The menu shortcode supports button shortcodes in itself, and provides styling for the menu.
+
+- #### button.html
+
+A simple button shortcode that takes a body and displays it inside a button that is animated on hover. The button also is entirely clickable, and navigates to the first of if any children link elements.
+
+- #### mermaid.html
+
+Simple mermaid shorcode that can be used to create mermaid diagrams in markdown. Also supported in row shortcode.
+
+[Mermaid]("https://mermaid-js.github.io/mermaid/#/")
+
+- #### annotation.html
+
+Simple annotation shorcode that can be used to create annotation objects in markdown.
+
+(note: inline and inline end qualifiers do not work.)
+
+[Annotations]("https://squidfunk.github.io/mkdocs-material/reference/annotations/#usage")
+
+### Image sizing with source paths
+
+You can size your markdown images by adding #small, #medium or #large at the end of the images source url.
+See /content/\_index.md for implementation.
+
+### Header & Footer
+
+The header and footer are also created from markdown files in the content directory. In /content/header/\_index.md, each header item is bulleted. If a header item has a row beneath it, the row will be displayed as a sub-menu on click. Otherwise, if header item is a link, it will simply navigate to the linked page.
+
+The footer, likewise, is structured using the row shortcode. However the left section with page summary is built in. To edit the site destcription, one should edit the description (in the yaml header) of the footer md file. To edit the social links, simply add the social outlets name and your link into the socialLinks dictionary attribute on the yaml header of the footer/\_index.md. If a social icon exists for the social outlet, the link wiill be automatically rendered within the icon, displayed in the footer.
+
+## Resources & References
+
+This project was started using a [Zola Tailwind starter set](https://github.com/brycewray/zola_twcss)
+Some templates were created using [Tailwind UI](https://tailwindui.com)
diff --git a/blog/a_better_understanding_of_wealth/a_better_understanding_of_wealth.jpg b/blog/a_better_understanding_of_wealth/a_better_understanding_of_wealth.jpg
new file mode 100644
index 0000000..9e07a67
Binary files /dev/null and b/blog/a_better_understanding_of_wealth/a_better_understanding_of_wealth.jpg differ
diff --git a/blog/a_better_understanding_of_wealth/index.md b/blog/a_better_understanding_of_wealth/index.md
new file mode 100644
index 0000000..b47bd41
--- /dev/null
+++ b/blog/a_better_understanding_of_wealth/index.md
@@ -0,0 +1,56 @@
+---
+id: a_better_understanding_of_wealth
+title: A Better Understanding of Wealth
+image_caption: a better understanding of wealth
+description: Wealth is more than the accumulation of money and resources.
+date: 2021-01-27
+taxonomies:
+ people: [alexandre_hannelas]
+ tags: [why,digital_twin]
+ categories: [twin]
+extra:
+ imgPath: a_better_understanding_of_wealth.jpg
+---
+
+# A better understanding of wealth
+
+
+
+Wealth is more than the accumulation of money and resources. It can be generated in ways other than through conventional financial means. The financial justice warrior, Bernard Liataer, highlighted that to capture the wealth of our societies, our culture and our environments, we have to pay heed to the notion of wealth as well-being.
+
+
+
+But how do we obtain that well-being? We all know the answer to this question – we have a sense of well-being when all of our needs are met. It is not just the basic needs of food, clothing and shelter but also the need to be a creative participant in our community, have a voice in our own destiny, and pursue our own spiritual development unhindered by social sanction. Developing real wealth implies making choices that enable all members of the community to attain well-being. Achieving sustainable wealth implies meeting the present's needs without compromising the ability of future generations to meet their own needs.
+
+
+
+Digital Twin has been created while taking into consideration the different types of community capital that need to be achieved to create real wealth:
+
+
+
+1. Natural Capital - It includes the community environment that produces more assets. Our today's economies failed to measure, understand and account for the true value of nature's riches - clean air and water, soil and pollination for food, the social, intrinsic and spiritual values of natural beauty. Digital Twin will be the tool for us to place a proper value on Natural capital finally.
+
+
+
+2. Technological Capital – It includes how we harness our intellectual resources to create tools, systems, machines, arts, skills, and materials designed to improve our lives. This is what Digital Twin is all about - providing the required technology to enhance our lives and those of our communities' members through collective efforts and intelligence. Digital Twin is only the foundation for this future global well-being. People will support education and creativity throughout the world and give access to material information required to create additional innovative technologies.
+
+
+
+3. Social Capital – It recognizes the economic importance of all the ways we are connected: the relationships, our networks and values we share and the cooperative systems, and all its different components we use for interacting. Nowadays, our social capital is threatened through the repetitive act of violence, betrayal of trust, exclusion or less sharing and caring towards our fellow humans. Digital Twin has been created to encourage the easy sharing and exchange of resources and cooperate with each other on a platform.
+
+
+
+4. Historical and Cultural Capital – Through history, we have learned, and now we are transmitting our cultural understanding and recommendation about the economic and financial system to others through an open-source, public and transparent peer-to-peer exchange protocol.
+
+
+
+5. Human Capital – It includes all capabilities that people have to learn, invent, create, work, care for each other, and contribute to the community. This is the reason why Digital Twin has been created - A project to benefit us all.
+
+
+6. Financial Capital – It is the creation of real wealth through the availability of liquidity resources through a multi-currency system and Savings & Investments made by individuals and institutions. By strengthening and increasing this type of capital, our peer-to-peer platform believes that it is the obvious path to a successful economic development.
+
+
+
+All of these forms of capital produce the critical flows of assets through the economic system. Capital is the foundation, the reproductive system, the greenhouse that grows a healthy economy. This has been one of the fundamental beliefs of Digital Twin - For the well-being of worldwide communities.
+
+
diff --git a/blog/a_different_approach_to_blockchain/a_different_approach_to_blockchain.png b/blog/a_different_approach_to_blockchain/a_different_approach_to_blockchain.png
new file mode 100644
index 0000000..400858e
Binary files /dev/null and b/blog/a_different_approach_to_blockchain/a_different_approach_to_blockchain.png differ
diff --git a/blog/a_different_approach_to_blockchain/index.md b/blog/a_different_approach_to_blockchain/index.md
new file mode 100644
index 0000000..6177c90
--- /dev/null
+++ b/blog/a_different_approach_to_blockchain/index.md
@@ -0,0 +1,51 @@
+---
+id: a_different_approach_to_blockchain
+title: Not your average blockchain project
+image_caption: a different approach to blockchain
+description: Sometimes we're compared to blockchain projects. We love the blockchain but that's just not who we are.
+date: 2021-04-20
+taxonomies:
+ people: [sacha_obeegadoo]
+ tags: [digital_twin,data,why]
+ categories: []
+extra:
+ imgPath: a_different_approach_to_blockchain.png
+---
+
+
+
+Sometimes we're compared to blockchain projects. We love blockchains and have many partners there – CasperLabs, DigiByte, Polygon, and Dash, to name a few – but that's just not what we are. Here's a few ways we are different than the "typical" blockchain project.
+
+## ThreeFold is actually much more than a blockchain
+
+ThreeFold is not actually even a blockchain project, rather it uses blockchain technology by combining it with other cutting-edge solutions. It's way more that just a blockchain alternative to a public cloud. ThreeFold started everything from scratch – built a super-lightweight and shell-less operating system, and a fully autonomous (self-driving and self-healing) architecture to enable a true peer-to-peer infrastructure. With zero intermediaries on the ThreeFold Grid, that leads to high efficiency and minimum complexity.
+
+
+The blockchain database (BCDB) acts as a registry for the workloads on the Threefold Grid. Workloads can only be accessed and managed with the private key of the data owner. The BCDB can prove to any party that their workloads are executed exactly as intended and that their data is untouched.
+
+
+In most distributed systems, data is stored multiple times to guarantee redundancy. This leads to a lot of unnecessary overhead and is also not the most secure mechanism. ThreeFold uses a dispersed storage algorithm to store the workloads on the ThreeFold Grid. The dispersed storage algorithm breaks data into shards and stores them on different nodes. This enables two things – first, performance efficiency (no need for consensus to run compute and storage) and second, energy efficiency (as there’s no more need for data duplication).
+
+
+
+*As mentioned up top, we have many partners in the space and we are working with them to bring true decentralization to their blockchains.*
+
+## ThreeFold had no ICO nor IEO. It pre-farmed its tokens
+
+ThreeFold didn’t have an ICO or IEO. ICOs and IEOs are fundraising schemes for blockchains to sell tokens to investors either directly (ICO) or through regulated exchanges (IEO). Instead, ThreeFold pre-farmed (ThreeFold’s sustainable alternative to mining) its tokens prior to going to the market and listed them on several exchanges, public and decentralized.
+
+
+This allowed ThreeFold to incentivize its early contributors, while also securing the ongoing development of the project until the launch of the Threefold Grid 2.0 in April 2020. Pre-mining is also an organic approach to the market, in line with ThreeFold’s values and vision of delivering products over using hype.
+
+## Product over Hype
+
+In some cases, ICOs and IEOs were surrounded with hype. It is always very hard to judge the ability of a project to deliver its promises through a white paper.
+
+
+Instead of fundraising with a white paper, the technological development remained the primary focus. For 4 years, ThreeFold developed the whole technology stack, starting with an operating-system built from scratch to the autonomous smart contract and virtual system administrator technology that enables a fully-autonomous peer-to-peer Cloud.
+
+
+In 2020, ThreeFold held the public launch of the ThreeFold Token on Liquid Exchange. At that time, the ThreeFold Grid was already live in its 2nd version.
+
+
+Today, you can go through the whole Threefold Universe and find ready-to-use products. You can participate in growing the world’s most advanced peer-to-peer Internet infrastructure, or use the peer-to-peer compute and storage capacity available on the P2P Cloud.
\ No newline at end of file
diff --git a/build.sh b/build.sh
new file mode 100755
index 0000000..8b00a2c
--- /dev/null
+++ b/build.sh
@@ -0,0 +1,38 @@
+echo "Starting build..."
+
+# TODO: Check if current version is latest to avoid redundant installation
+
+# checks os and architecture for correct release
+# https://stackoverflow.com/a/8597411
+echo "Installing & building tailwind..."
+ASSET="tailwindcss"
+
+if [[ "$OSTYPE" == "linux-gnu"* ]]; then
+ ASSET="$ASSET-linux"
+elif [[ "$OSTYPE" == "darwin"* ]]; then
+ ASSET="$ASSET-macos"
+fi
+if [[ "$(uname -m)" == "x86_64"* ]]; then
+ ASSET="$ASSET-x64"
+elif [[ "$(uname -m)" == "arm64"* ]]; then
+ ASSET="$ASSET-arm64"
+fi
+
+curl -sLO "https://github.com/tailwindlabs/tailwindcss/releases/latest/download/${ASSET}"
+chmod +x $ASSET
+mv $ASSET tailwindcss
+
+
+# initialized and configures tailwind if not configured
+echo "Initializing tailwind..."
+if [[ ! -f "tailwind.config.js" ]]
+then
+ ./tailwindcss init
+ sed -i '' "s| content: \\[\\],| content: \\['./templates/**/*.html'\\],|g" tailwind.config.js
+fi
+
+# compiles tailwind css for prod & builds project
+echo "Compiling tailwindcss and building zola project..."
+rm -rf public static/css
+./tailwindcss -i css/index.css -o ./static/css/index.css --minify
+zola build
diff --git a/config.toml b/config.toml
new file mode 100644
index 0000000..dc490de
--- /dev/null
+++ b/config.toml
@@ -0,0 +1,71 @@
+# The URL the site will be built for
+base_url = "https://nomads.ourworld.tf/"
+# Change this to your own URL! Please note this variable **must** be uncommented.
+
+title = "Ournomads"
+description="Our global digital backbone"
+
+# When set to "true", a feed is automatically generated.
+# generate_feed = true
+
+# The filename to use for the feed. Used as the template filename, too.
+# Defaults to "atom.xml", which has a built-in template that renders an Atom 1.0 feed.
+# There is also a built-in template "rss.xml" that renders an RSS 2.0 feed.
+# feed_filename = "index.xml"
+
+# The number of articles to include in the feed. All items are included if
+# this limit is not set (the default).
+# feed_limit = 10
+
+# Whether to automatically compile all Sass files in the sass directory
+compile_sass = false
+
+# When set to "true", the generated HTML files are minified.
+# minify_html = true
+# I'm keeping off for now -- buggy -- 2021-02-05 (@keats says it'll be fixed 0.14.0)
+
+# Whether to build a search index to be used later on by a JavaScript library
+build_search_index = false
+
+[markdown]
+# Whether to do syntax highlighting
+# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
+highlight_code = true
+highlight_theme = "visual-studio-dark"
+
+# When set to "true", emoji aliases translated to their corresponding
+# Unicode emoji equivalent in the rendered Markdown files. (e.g.: :smile: => 😄)
+render_emoji = false
+
+[slugify]
+paths = "on"
+
+# Whether external links are to be opened in a new tab
+# If this is true, a `rel="noopener"` will always automatically be added for security reasons
+external_links_target_blank = true
+
+# Whether to set rel="nofollow" for all external links
+external_links_no_follow = true
+
+# Whether to set rel="noreferrer" for all external links
+external_links_no_referrer = true
+
+# Whether smart punctuation is enabled (changing quotes, dashes, dots in their typographic form)
+# For example, `...` into `…`, `"quote"` into `“curly”` etc
+smart_punctuation = true
+
+[[taxonomies]]
+name = "categories"
+feed = true
+paginate_by = 2
+paginate_path = "blog-posts"
+
+[[taxonomies]]
+name = "categories"
+feed = true
+paginate_by = 2
+paginate_path = "blog-posts"
+
+[extra]
+header_class = "freeflow"
+footer_class = "freeflow"
\ No newline at end of file
diff --git a/content/_index.md b/content/_index.md
new file mode 100644
index 0000000..8e31481
--- /dev/null
+++ b/content/_index.md
@@ -0,0 +1,11 @@
+---
+title: "OW Nomads"
+description: ""
+date: 2018-09-14
+updated: 2021-02-20
+draft: false
+sort_by: weight
+weight: 1
+extra:
+ logo_path: images/nomads_logo.png
+---
diff --git a/content/co-own/img/dao2.png b/content/co-own/img/dao2.png
new file mode 100644
index 0000000..c0d1d9c
Binary files /dev/null and b/content/co-own/img/dao2.png differ
diff --git a/content/co-own/img/dig_nomad.png b/content/co-own/img/dig_nomad.png
new file mode 100644
index 0000000..05ef148
Binary files /dev/null and b/content/co-own/img/dig_nomad.png differ
diff --git a/content/co-own/img/farm.png b/content/co-own/img/farm.png
new file mode 100644
index 0000000..d8798eb
Binary files /dev/null and b/content/co-own/img/farm.png differ
diff --git a/content/co-own/img/icons.png b/content/co-own/img/icons.png
new file mode 100644
index 0000000..b64faf7
Binary files /dev/null and b/content/co-own/img/icons.png differ
diff --git a/content/co-own/img/nomad.png b/content/co-own/img/nomad.png
new file mode 100644
index 0000000..eb0dece
Binary files /dev/null and b/content/co-own/img/nomad.png differ
diff --git a/content/co-own/img/world.png b/content/co-own/img/world.png
new file mode 100644
index 0000000..3fba133
Binary files /dev/null and b/content/co-own/img/world.png differ
diff --git a/content/co-own/index.md b/content/co-own/index.md
new file mode 100644
index 0000000..c619b4b
--- /dev/null
+++ b/content/co-own/index.md
@@ -0,0 +1,67 @@
+---
+title: "Co-Own"
+description: ""
+date: 2018-09-14
+updated: 2021-02-20
+draft: false
+weight: 2
+---
+
+
+
+{% row(style="center" margin="narrow" padding="top") %}
+
+## BECOME A CO-FOUNDER IN OURWORLD NOMADS {#text-4xl}
+
+Unique co-ownership structure of a diverse real-estate portfolio
+
+
+
+{% end %}
+
+
+{% row(style="center" margin="narrow" padding="none") %}
+
+
+
+|||
+
+
+
+|||
+
+
+
+
+{% end %}
+
+
+{% row(style="center" margin="narrow" padding="none") %}
+
+### Become a co-owner of real estate assets on safe locations in the world. {#text-2xl}
+
+|||
+
+### Live In Unique Locations designed to the needs of Digital nomads. {#text-2xl}
+
+|||
+
+### Make it possible to provide regenerative farming to our communities. {#text-2xl}
+
+
+{% end %}
+
+
+
+{% row(style="lean-left" margin="narrow" padding="") %}
+
+To power OurWorld Digital Nomad DAO, we will create a Digital Nomad Token (DNT) which will act as a proof of co-ownership – providing token holders the following benefits:
+
+- A seat in the OurWorld Digital Nomad governance system, overseeing the further developments of the community and its ecosystem
+
+- Yield on future rental of properties and related infrastructure (energy, food, internet generation)
+- Preferential access to homes, events and retreats in all locations
+- Priority access to organic food reserves and internet capacity
+- Ability to reserve premises/locations for private events
+
+{% end %}
diff --git a/content/header/index.md b/content/header/index.md
new file mode 100644
index 0000000..8c37e07
--- /dev/null
+++ b/content/header/index.md
@@ -0,0 +1,165 @@
+---
+title: "Header"
+insert_anchor_links: "left"
+template: "partials/header.html"
+extra:
+ logoPath: "images/black_threefold.png"
+ button_Path: "/images/gettft_white.png"
+---
+
+
+- [Mission]("/mission")
+- [Grid]("/grid")
+- [Build]("/build")
+- [Farm]("/farm")
+- [TFT]("/tft")
+- Ecosystem
+
+{% row() %}
+
+
+
+|||
+
+