Compare commits
48 Commits
developmen
...
developmen
Author | SHA1 | Date | |
---|---|---|---|
7f72bb3224 | |||
|
97eb004895 | ||
|
74188790e6 | ||
|
e3e0bf5f9a | ||
|
0c81d6b0df | ||
74586cc139 | |||
a5ce214825 | |||
b924709a08 | |||
c60a9b54e1 | |||
fbca744861 | |||
|
0b6b580824 | ||
|
3f5b050ac5 | ||
c510931829 | |||
1dcb98b47c | |||
848c7003e1 | |||
|
cd6b0c97a7 | ||
|
084f277d92 | ||
|
aa2dcee6ab | ||
5cd78248c2 | |||
|
82bbd0ec07 | ||
|
9105e8078d | ||
|
1e8adf6f1f | ||
|
c604ba8840 | ||
|
154519deb6 | ||
|
ea032518dd | ||
|
84d034569c | ||
|
ac60aee669 | ||
|
1771eaebba | ||
|
6f13d784c2 | ||
|
a43a985860 | ||
|
c9ee03bca5 | ||
|
a44984b438 | ||
|
3e228b4251 | ||
|
21b31d8321 | ||
d56798cafb | |||
![]() |
28ee620176 | ||
1c1f28f4a9 | |||
|
afc0f2d287 | ||
|
1fe3d7662d | ||
|
39bec2f87c | ||
|
8066315b74 | ||
|
b971ce45bd | ||
|
f367293492 | ||
|
15fc5345ee | ||
|
b69a569292 | ||
|
a9cf43d1d5 | ||
|
874093cb6a | ||
ec18de7183 |
22
.github/workflows/tf_update.yml
vendored
@@ -1,22 +0,0 @@
|
|||||||
name: ourverse.tf
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branch: [development]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
job_one:
|
|
||||||
name: Deploy
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: pushing latest change on nomads.ourworld.tf
|
|
||||||
uses: appleboy/ssh-action@master
|
|
||||||
with:
|
|
||||||
host: nomads.ourworld.tf
|
|
||||||
username: webuser
|
|
||||||
key: ${{ secrets.TF_SECRET }}
|
|
||||||
port: 34022
|
|
||||||
script: |
|
|
||||||
cd /home/webuser/websites/www2/www_ournomads/
|
|
||||||
git log -1
|
|
||||||
git pull
|
|
||||||
bash build.sh
|
|
24
.github/workflows/tf_update_dev.yml
vendored
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
name: www2.ournomads.ourworld.tf
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ development ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
job_one:
|
||||||
|
name: Deploy
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: pushing latest change on www2.ournomads.ourworld.tf
|
||||||
|
uses: appleboy/ssh-action@master
|
||||||
|
with:
|
||||||
|
host: www2.ournomads.ourworld.tf
|
||||||
|
username: webuser
|
||||||
|
key: ${{ secrets.TF_SECRET }}
|
||||||
|
port: 34022
|
||||||
|
script: |
|
||||||
|
cd websites/www2/www_ournomads/
|
||||||
|
git log -1
|
||||||
|
git fetch
|
||||||
|
git reset --hard origin/development
|
||||||
|
sed -i "s/https:\/\/ournomads.ourworld.tf/https:\/\/www2.ournomads.ourworld.tf/g" config.toml
|
||||||
|
./build.sh
|
24
.github/workflows/tf_update_prod.yml
vendored
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
name: ournomads.ourworld.tf
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ master ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
job_one:
|
||||||
|
name: Deploy
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: pushing latest change on ournomads.ourworld.tf
|
||||||
|
uses: appleboy/ssh-action@master
|
||||||
|
with:
|
||||||
|
host: ournomads.ourworld.tf
|
||||||
|
username: webuser
|
||||||
|
key: ${{ secrets.TF_SECRET }}
|
||||||
|
port: 34022
|
||||||
|
script: |
|
||||||
|
cd websites/www_ournomads/
|
||||||
|
git log -1
|
||||||
|
git fetch
|
||||||
|
git reset --hard origin/master
|
||||||
|
sed -i "s/https:\/\/www2.ournomads.ourworld.tf/https:\/\/ournomads.ourworld.tf/g" config.toml
|
||||||
|
./build.sh
|
201
LICENSE
Normal file
@@ -0,0 +1,201 @@
|
|||||||
|
Apache License
|
||||||
|
Version 2.0, January 2004
|
||||||
|
http://www.apache.org/licenses/
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||||
|
|
||||||
|
1. Definitions.
|
||||||
|
|
||||||
|
"License" shall mean the terms and conditions for use, reproduction,
|
||||||
|
and distribution as defined by Sections 1 through 9 of this document.
|
||||||
|
|
||||||
|
"Licensor" shall mean the copyright owner or entity authorized by
|
||||||
|
the copyright owner that is granting the License.
|
||||||
|
|
||||||
|
"Legal Entity" shall mean the union of the acting entity and all
|
||||||
|
other entities that control, are controlled by, or are under common
|
||||||
|
control with that entity. For the purposes of this definition,
|
||||||
|
"control" means (i) the power, direct or indirect, to cause the
|
||||||
|
direction or management of such entity, whether by contract or
|
||||||
|
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||||
|
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||||
|
|
||||||
|
"You" (or "Your") shall mean an individual or Legal Entity
|
||||||
|
exercising permissions granted by this License.
|
||||||
|
|
||||||
|
"Source" form shall mean the preferred form for making modifications,
|
||||||
|
including but not limited to software source code, documentation
|
||||||
|
source, and configuration files.
|
||||||
|
|
||||||
|
"Object" form shall mean any form resulting from mechanical
|
||||||
|
transformation or translation of a Source form, including but
|
||||||
|
not limited to compiled object code, generated documentation,
|
||||||
|
and conversions to other media types.
|
||||||
|
|
||||||
|
"Work" shall mean the work of authorship, whether in Source or
|
||||||
|
Object form, made available under the License, as indicated by a
|
||||||
|
copyright notice that is included in or attached to the work
|
||||||
|
(an example is provided in the Appendix below).
|
||||||
|
|
||||||
|
"Derivative Works" shall mean any work, whether in Source or Object
|
||||||
|
form, that is based on (or derived from) the Work and for which the
|
||||||
|
editorial revisions, annotations, elaborations, or other modifications
|
||||||
|
represent, as a whole, an original work of authorship. For the purposes
|
||||||
|
of this License, Derivative Works shall not include works that remain
|
||||||
|
separable from, or merely link (or bind by name) to the interfaces of,
|
||||||
|
the Work and Derivative Works thereof.
|
||||||
|
|
||||||
|
"Contribution" shall mean any work of authorship, including
|
||||||
|
the original version of the Work and any modifications or additions
|
||||||
|
to that Work or Derivative Works thereof, that is intentionally
|
||||||
|
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||||
|
or by an individual or Legal Entity authorized to submit on behalf of
|
||||||
|
the copyright owner. For the purposes of this definition, "submitted"
|
||||||
|
means any form of electronic, verbal, or written communication sent
|
||||||
|
to the Licensor or its representatives, including but not limited to
|
||||||
|
communication on electronic mailing lists, source code control systems,
|
||||||
|
and issue tracking systems that are managed by, or on behalf of, the
|
||||||
|
Licensor for the purpose of discussing and improving the Work, but
|
||||||
|
excluding communication that is conspicuously marked or otherwise
|
||||||
|
designated in writing by the copyright owner as "Not a Contribution."
|
||||||
|
|
||||||
|
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||||
|
on behalf of whom a Contribution has been received by Licensor and
|
||||||
|
subsequently incorporated within the Work.
|
||||||
|
|
||||||
|
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
copyright license to reproduce, prepare Derivative Works of,
|
||||||
|
publicly display, publicly perform, sublicense, and distribute the
|
||||||
|
Work and such Derivative Works in Source or Object form.
|
||||||
|
|
||||||
|
3. Grant of Patent License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
(except as stated in this section) patent license to make, have made,
|
||||||
|
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||||
|
where such license applies only to those patent claims licensable
|
||||||
|
by such Contributor that are necessarily infringed by their
|
||||||
|
Contribution(s) alone or by combination of their Contribution(s)
|
||||||
|
with the Work to which such Contribution(s) was submitted. If You
|
||||||
|
institute patent litigation against any entity (including a
|
||||||
|
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||||
|
or a Contribution incorporated within the Work constitutes direct
|
||||||
|
or contributory patent infringement, then any patent licenses
|
||||||
|
granted to You under this License for that Work shall terminate
|
||||||
|
as of the date such litigation is filed.
|
||||||
|
|
||||||
|
4. Redistribution. You may reproduce and distribute copies of the
|
||||||
|
Work or Derivative Works thereof in any medium, with or without
|
||||||
|
modifications, and in Source or Object form, provided that You
|
||||||
|
meet the following conditions:
|
||||||
|
|
||||||
|
(a) You must give any other recipients of the Work or
|
||||||
|
Derivative Works a copy of this License; and
|
||||||
|
|
||||||
|
(b) You must cause any modified files to carry prominent notices
|
||||||
|
stating that You changed the files; and
|
||||||
|
|
||||||
|
(c) You must retain, in the Source form of any Derivative Works
|
||||||
|
that You distribute, all copyright, patent, trademark, and
|
||||||
|
attribution notices from the Source form of the Work,
|
||||||
|
excluding those notices that do not pertain to any part of
|
||||||
|
the Derivative Works; and
|
||||||
|
|
||||||
|
(d) If the Work includes a "NOTICE" text file as part of its
|
||||||
|
distribution, then any Derivative Works that You distribute must
|
||||||
|
include a readable copy of the attribution notices contained
|
||||||
|
within such NOTICE file, excluding those notices that do not
|
||||||
|
pertain to any part of the Derivative Works, in at least one
|
||||||
|
of the following places: within a NOTICE text file distributed
|
||||||
|
as part of the Derivative Works; within the Source form or
|
||||||
|
documentation, if provided along with the Derivative Works; or,
|
||||||
|
within a display generated by the Derivative Works, if and
|
||||||
|
wherever such third-party notices normally appear. The contents
|
||||||
|
of the NOTICE file are for informational purposes only and
|
||||||
|
do not modify the License. You may add Your own attribution
|
||||||
|
notices within Derivative Works that You distribute, alongside
|
||||||
|
or as an addendum to the NOTICE text from the Work, provided
|
||||||
|
that such additional attribution notices cannot be construed
|
||||||
|
as modifying the License.
|
||||||
|
|
||||||
|
You may add Your own copyright statement to Your modifications and
|
||||||
|
may provide additional or different license terms and conditions
|
||||||
|
for use, reproduction, or distribution of Your modifications, or
|
||||||
|
for any such Derivative Works as a whole, provided Your use,
|
||||||
|
reproduction, and distribution of the Work otherwise complies with
|
||||||
|
the conditions stated in this License.
|
||||||
|
|
||||||
|
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||||
|
any Contribution intentionally submitted for inclusion in the Work
|
||||||
|
by You to the Licensor shall be under the terms and conditions of
|
||||||
|
this License, without any additional terms or conditions.
|
||||||
|
Notwithstanding the above, nothing herein shall supersede or modify
|
||||||
|
the terms of any separate license agreement you may have executed
|
||||||
|
with Licensor regarding such Contributions.
|
||||||
|
|
||||||
|
6. Trademarks. This License does not grant permission to use the trade
|
||||||
|
names, trademarks, service marks, or product names of the Licensor,
|
||||||
|
except as required for reasonable and customary use in describing the
|
||||||
|
origin of the Work and reproducing the content of the NOTICE file.
|
||||||
|
|
||||||
|
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||||
|
agreed to in writing, Licensor provides the Work (and each
|
||||||
|
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||||
|
implied, including, without limitation, any warranties or conditions
|
||||||
|
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||||
|
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||||
|
appropriateness of using or redistributing the Work and assume any
|
||||||
|
risks associated with Your exercise of permissions under this License.
|
||||||
|
|
||||||
|
8. Limitation of Liability. In no event and under no legal theory,
|
||||||
|
whether in tort (including negligence), contract, or otherwise,
|
||||||
|
unless required by applicable law (such as deliberate and grossly
|
||||||
|
negligent acts) or agreed to in writing, shall any Contributor be
|
||||||
|
liable to You for damages, including any direct, indirect, special,
|
||||||
|
incidental, or consequential damages of any character arising as a
|
||||||
|
result of this License or out of the use or inability to use the
|
||||||
|
Work (including but not limited to damages for loss of goodwill,
|
||||||
|
work stoppage, computer failure or malfunction, or any and all
|
||||||
|
other commercial damages or losses), even if such Contributor
|
||||||
|
has been advised of the possibility of such damages.
|
||||||
|
|
||||||
|
9. Accepting Warranty or Additional Liability. While redistributing
|
||||||
|
the Work or Derivative Works thereof, You may choose to offer,
|
||||||
|
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||||
|
or other liability obligations and/or rights consistent with this
|
||||||
|
License. However, in accepting such obligations, You may act only
|
||||||
|
on Your own behalf and on Your sole responsibility, not on behalf
|
||||||
|
of any other Contributor, and only if You agree to indemnify,
|
||||||
|
defend, and hold each Contributor harmless for any liability
|
||||||
|
incurred by, or claims asserted against, such Contributor by reason
|
||||||
|
of your accepting any such warranty or additional liability.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
APPENDIX: How to apply the Apache License to your work.
|
||||||
|
|
||||||
|
To apply the Apache License to your work, attach the following
|
||||||
|
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||||
|
replaced with your own identifying information. (Don't include
|
||||||
|
the brackets!) The text should be enclosed in the appropriate
|
||||||
|
comment syntax for the file format. We also recommend that a
|
||||||
|
file or class name and description of purpose be included on the
|
||||||
|
same "printed page" as the copyright notice for easier
|
||||||
|
identification within third-party archives.
|
||||||
|
|
||||||
|
Copyright Incubaid NV Belgium
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
102
README.md
@@ -1,104 +1,46 @@
|
|||||||
# FreeFlow Life Website
|
# Welcome to OurNomads Website Repository
|
||||||
|
|
||||||
## About
|
## About
|
||||||
|
|
||||||
A website created using Zola, a static site generator.
|
The official website of OurNomads- A Digital Nomads Experience Powered by Ourworld.
|
||||||
|
|
||||||
- The contents of the pages reside in the markdown files in /content (written in CommmonMark)
|
production [https://ournomads.ourworld.tf/](https://ournomads.ourworld.tf/)
|
||||||
- The pages are rendered using HTML templates with Tailwind CSS framework in /templates
|
|
||||||
|
|
||||||
## Getting Started
|
staging [https://www2.ournomads.ourworld.tf/](https://www2.ournomads.ourworld.tf/)
|
||||||
|
|
||||||
This repository is meant to use as a template for static sites.
|
Last Updated: March 2023
|
||||||
|
|
||||||
To use this repository as a template, simply:
|
## Contribution
|
||||||
|
|
||||||
- clone repository
|
Feel free to [create a new issue](https://github.com/ourworld-tsc/www_ournomads/issues) to report an error on the website, or if you have any suggestions on website improvements.
|
||||||
- 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
|
## Administrators
|
||||||
|
[ThreeFold's Web Admins](https://github.com/orgs/threefoldfoundation/teams/team_web_admin)
|
||||||
|
|
||||||
### Structure of the content directory
|
## Direct Contribution Procedure
|
||||||
|
|
||||||
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:
|
It is highly important to follow this procedure to contribute to the website content. <br>
|
||||||
content/\_index.md -> yoururl.com/
|
__WARNING__: DO NOT commit straight into __master__ / __development__ branch.
|
||||||
content/blog/\_index.md -> yoururl.com/blog
|
|
||||||
content/careers/index.md or content/careers.md -> yoururl.com/careers
|
|
||||||
|
|
||||||
### Section Templates
|
1. Create an Issue
|
||||||
|
Feel free to [create a new issue](https://github.com/threefoldfoundation/www_threefold_io/issues/new) to report an error on the website, or if you have any suggestions on website improvements.
|
||||||
|
|
||||||
#### Blog.html
|
2. Make your own branch from __'development'__ branch.
|
||||||
|
by creating a new branch from 'Master' you will be provided with the latest copy of the live website content.
|
||||||
|
|
||||||
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.
|
3. Add your edits into your own branch via code editor locally, and push your local changes online. WARNING: DO NOT add your edits straight into __master__ / __development__ branch.
|
||||||
|
|
||||||
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.
|
5. Create a PR to merge your own branch into '**development**', and assign one of [ThreeFold's Web Admins](https://github.com/orgs/threefoldfoundation/teams/team_web_admin) on your PR as reviewer, or assign @sasha-astiadi as reviewer.
|
||||||
|
|
||||||
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.
|
7. When PR is approved, you can see your changes on staging env on www2.threefold.io (development branch)
|
||||||
|
|
||||||
#### Section.html
|
8. Admin will then create a PR to merge 'development' into into '**master**' (production branch)
|
||||||
|
|
||||||
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.
|
10. When PR is approved, you can see your changes live on production (master branch).
|
||||||
|
|
||||||
### 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)
|
|
||||||
|
After Width: | Height: | Size: 912 KiB |
56
blog/a_better_understanding_of_wealth/index.md
Normal file
@@ -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
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
Digital Twin has been created while taking into consideration the different types of community capital that need to be achieved to create real wealth:
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
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.
|
||||||
|
<br>
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
|
After Width: | Height: | Size: 1.0 MiB |
51
blog/a_different_approach_to_blockchain/index.md
Normal file
@@ -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
|
||||||
|
---
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
|
||||||
|
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.<!-- -->
|
||||||
|
<br/>
|
||||||
|
<br/>
|
||||||
|
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.
|
||||||
|
<br/>
|
||||||
|
<br/>
|
||||||
|
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).
|
||||||
|
<br/>
|
||||||
|
<br/>
|
||||||
|
|
||||||
|
*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.
|
||||||
|
<br/>
|
||||||
|
<br/>
|
||||||
|
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.
|
||||||
|
<br/>
|
||||||
|
<br/>
|
||||||
|
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.
|
||||||
|
<br/>
|
||||||
|
<br/>
|
||||||
|
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.
|
||||||
|
<br/>
|
||||||
|
<br/>
|
||||||
|
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.
|
@@ -1,5 +1,5 @@
|
|||||||
# The URL the site will be built for
|
# The URL the site will be built for
|
||||||
base_url = "https://nomads.ourworld.tf/"
|
base_url = "https://ournomads.ourworld.tf/"
|
||||||
# Change this to your own URL! Please note this variable **must** be uncommented.
|
# Change this to your own URL! Please note this variable **must** be uncommented.
|
||||||
|
|
||||||
title = "Ournomads"
|
title = "Ournomads"
|
||||||
@@ -68,4 +68,4 @@ paginate_path = "blog-posts"
|
|||||||
|
|
||||||
[extra]
|
[extra]
|
||||||
header_class = "freeflow"
|
header_class = "freeflow"
|
||||||
footer_class = "freeflow"
|
footer_class = "freeflow"
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: "FreeFlow"
|
title: "OW Nomads"
|
||||||
description: ""
|
description: ""
|
||||||
date: 2018-09-14
|
date: 2018-09-14
|
||||||
updated: 2021-02-20
|
updated: 2021-02-20
|
||||||
|
Before Width: | Height: | Size: 152 KiB |
Before Width: | Height: | Size: 5.2 MiB |
Before Width: | Height: | Size: 97 KiB |
Before Width: | Height: | Size: 89 KiB |
Before Width: | Height: | Size: 93 KiB |
Before Width: | Height: | Size: 432 KiB |
Before Width: | Height: | Size: 318 KiB |
Before Width: | Height: | Size: 1.0 MiB |
Before Width: | Height: | Size: 1.1 MiB |
BIN
content/co-Own/img/dao2.png
Normal file
After Width: | Height: | Size: 162 KiB |
BIN
content/co-Own/img/dig_nomad.png
Normal file
After Width: | Height: | Size: 594 KiB |
BIN
content/co-Own/img/farm.png
Normal file
After Width: | Height: | Size: 44 KiB |
BIN
content/co-Own/img/icons.png
Normal file
After Width: | Height: | Size: 795 KiB |
BIN
content/co-Own/img/nomad.png
Normal file
After Width: | Height: | Size: 44 KiB |
BIN
content/co-Own/img/world.png
Normal file
After Width: | Height: | Size: 48 KiB |
@@ -4,139 +4,74 @@ description: ""
|
|||||||
date: 2018-09-14
|
date: 2018-09-14
|
||||||
updated: 2021-02-20
|
updated: 2021-02-20
|
||||||
draft: false
|
draft: false
|
||||||
weight: 2
|
weight: 3
|
||||||
---
|
---
|
||||||
|
|
||||||
<!-- section 1 (heade FF TWIN) -->
|
|
||||||
|
|
||||||
{% row(style="center" bgPath="bg_home.jpg" bgStyle="hero") %}
|
<div class="container mx-auto">
|
||||||
|
|
||||||
<br>
|
<!-- section 1 (co-found) -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### THE FREEFLOW TWIN
|
|
||||||
|
|
||||||
## own every <br> aspect of your <br> digital life
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The FreeFlow Twin is your digital avatar.
|
|
||||||
|
|
||||||
<button>[KNOW MORE](/twin/#identity)</button>
|
|
||||||
<button onclick="window.open('https://threefoldfoundation.github.io/books/freeflow/network/buy/buy_my_twin.html', '_blank')">GET THE TWIN</button>
|
|
||||||
|
|
||||||
|||
|
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
<br>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
{%end%}
|
|
||||||
|
|
||||||
<!-- section 2 -->
|
|
||||||
|
|
||||||
|
|
||||||
{% row(style="center" bgColor="#F5F1ED" margin="wide" id="identity") %}
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
|||
|
|
||||||
|
|
||||||
|
|
||||||
### **THE FREEFLOW KEY**
|
|
||||||
|
|
||||||
## YOUR VALUABLE KEY <br> TO YOUR DIGITAL LIFE
|
|
||||||
|
|
||||||
To get access to your FreeFlow Twin you need a unique NTF known as a FreeFlow Key (FFK), these keys are valuable and unique.
|
|
||||||
<button class="flex mx-auto" onclick="window.open('https://threefoldfoundation.github.io/books/freeflow/network/tokens/ffk.html', '_blank')">MORE INFO</button>
|
|
||||||
|
|
||||||
{% end %}
|
|
||||||
|
|
||||||
<!-- section 3 (oldnew) -->
|
|
||||||
|
|
||||||
{% row(style="center" margin="narrow" padding="top") %}
|
{% row(style="center" margin="narrow" padding="top") %}
|
||||||
|
|
||||||
## DO ANYTHING. <br> DO EVERYTHING.
|
## BECOME A CO-FOUNDER IN OURWORLD NOMADS {#text-4xl}
|
||||||
|
|
||||||
Your FreeFlow Twin comes with all required skills and capabilities.
|
Unique co-ownership structure of a diverse real-estate portfolio
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
{% end %}
|
{% end %}
|
||||||
|
|
||||||
{% fflow_skills() %}
|
|
||||||
|
|
||||||
## fflow_skills
|
{% row(style="center" margin="narrow" padding="none") %}
|
||||||
|
|
||||||
{% end %}
|

|
||||||
|
|
||||||
{% row(style="center" bgColor="#EAF3F7" margin="wide") %}
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
|||
|
|||
|
||||||
|
|
||||||
## FREE FLOWING <br> EXPERIENCES
|

|
||||||
|
|
||||||
Communicate, Explore and Collaborate with you in the center of your digital life. Your twin can be used as alternative to Whatsapp, Google Drive, Zoom, Facebook, Linkedin, ...
|
|
||||||
|
|
||||||
<button>[THE EXPERIENCES](/experiences)</button>
|
|
||||||
|
|
||||||
{% end %}
|
|
||||||
|
|
||||||
{% row(style="center" bgColor="#EFEDEB" margin="moderate") %}
|
|
||||||
|
|
||||||
## THIS IS WHERE <br> DATA COMES <br> TOGETHER
|
|
||||||
|
|
||||||
### Quantum Safe Data Storage System
|
|
||||||
|
|
||||||
All your data is yours, can not be stolen, not corrupted nor lost. <br>Your data is usable over all your experiences.
|
|
||||||
|
|
||||||
Your digital twin manages all of this for you. e.g. you can use same chat from your collaboration app or your metaverse exploration.
|
|
||||||
|
|
||||||
<button onclick="window.open('https://threefoldfoundation.github.io/books/freeflow/mytwin/intro/twin_architecture.html', '_blank')">ARCHITECTURE</button>
|
|
||||||
|
|
||||||
|||
|
|||
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
{% end %}
|
|
||||||
|
|
||||||
{% row(bgColor="#f3fcf6" style="center" margin="moderate lean-right") %}
|
|
||||||
|
|
||||||
## RIDICULOUSLY <br> GREEN.
|
|
||||||
|
|
||||||
A typical FreeFlow user consumes less than 1 watt to live their entire digital life.
|
|
||||||
|
|
||||||
This ultra-sustainable approach allows the system to easily scale without being a burden to the planet.
|
|
||||||
|
|
||||||
|||
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
{% end %}
|
{% end %}
|
||||||
|
|
||||||
|
|
||||||
{% row(style="center" bgColor="#EFEDEB" margin="moderate") %}
|
{% row(style="center" margin="narrow" padding="none") %}
|
||||||
|
|
||||||

|
### Become a co-owner of real estate assets on safe locations in the world. {#text-2xl}
|
||||||
|
|
||||||
|||
|
|||
|
||||||
|
|
||||||
## LETS GET STARTED<BR>OWN YOUR TWIN
|
### Live In Unique Locations designed to the needs of Digital nomads. {#text-2xl}
|
||||||
|
|
||||||
Become the center of your digital life and <br> Get your FreeFlow key now!
|
|||
|
||||||
|
|
||||||
|
### Make it possible to provide regenerative farming to our communities. {#text-2xl}
|
||||||
|
|
||||||
|
|
||||||
<button onclick="window.open('https://threefoldfoundation.github.io/books/freeflow/network/buy/buy_my_twin.html', '_blank')">GET THE TWIN</button>
|
{% end %}
|
||||||
|
|
||||||
|
|
||||||
|
<!-- section 3 (advantages) -->
|
||||||
|
{% row(style="lean-left" margin="narrow" padding="") %}
|
||||||
|
|
||||||
{% end %}
|
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 %}
|
||||||
|
|
||||||
|
</div>
|
Before Width: | Height: | Size: 1.3 MiB |
Before Width: | Height: | Size: 461 KiB |
Before Width: | Height: | Size: 1.3 MiB |
Before Width: | Height: | Size: 4.0 MiB |
Before Width: | Height: | Size: 2.2 MiB |
Before Width: | Height: | Size: 377 KiB |
Before Width: | Height: | Size: 682 KiB After Width: | Height: | Size: 632 KiB |
BIN
content/home/homeheader.jpg
Normal file
After Width: | Height: | Size: 676 KiB |
@@ -7,26 +7,35 @@ draft: false
|
|||||||
weight: 1
|
weight: 1
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
<!-- section 1 (header) -->
|
<!-- section 1 (header) -->
|
||||||
|
|
||||||
{% row(margin="header" bgPath="home_header.jpg" bgStyle="full") %}
|
{% row(style="center" margin="tight" bgPath="homeheader.jpg" bgStyle="full") %}
|
||||||
|
|
||||||
# WORK, <br> LIVE & PLAY
|
<br>
|
||||||
|
|
||||||
Our world offers Digital Nomads <br /> truly amazing experiences in some <br /> of the world’s best locations.
|
<br>
|
||||||
|
|
||||||
|
<div class="bg-gray-200/50 py-4 px-4 rounded-md">
|
||||||
|
|
||||||
|
# WORK, LIVE & PLAY
|
||||||
|
|
||||||
|
Our world offers Digital Nomads truly amazing experiences in some of the world’s best locations.
|
||||||
|
|
||||||
|
<button>[KNOW MORE](/locations)</button>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
<button>[KNOW MORE](/)</button>
|
|
||||||
|
|
||||||
{% end %}
|
{% end %}
|
||||||
|
|
||||||
<br>
|
<div class="container mx-auto">
|
||||||
<br>
|
|
||||||
|
|
||||||
<!-- section 2 -->
|
<!-- section 2 -->
|
||||||
|
|
||||||
{% row(style="center" margin="narrow" padding="") %}
|
{% row(style="center" margin="moderate" padding="both") %}
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### **REGENERATION**
|
### **REGENERATION**
|
||||||
|
|
||||||
@@ -34,7 +43,7 @@ We offer endless services to heal the body, mind and soul
|
|||||||
|
|
||||||
|||
|
|||
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### **CONNECTIONS**
|
### **CONNECTIONS**
|
||||||
|
|
||||||
@@ -42,33 +51,33 @@ Our locations are designed to provide intimacy and bring people together
|
|||||||
|
|
||||||
|||
|
|||
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### **EXPERIENCE**
|
### **EXPERIENCE**
|
||||||
|
|
||||||
Me created an enviroment that meets people’s personal and professional needs
|
An enviroment that meets people’s personal and professional needs
|
||||||
|
|
||||||
{% end %}
|
{% end %}
|
||||||
|
|
||||||
<!-- section 3 -->
|
<!-- section 3 -->
|
||||||
|
|
||||||
{% row(style="center" margin="narrow") %}
|
{% row(margin="moderate" padding="none") %}
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|||
|
|||
|
||||||
|
|
||||||
## HAND-PICKED <br /> LOCATIONS
|
## HAND-PICKED <br /> LOCATIONS
|
||||||
|
|
||||||
Carefully chosen locations that offer an array of services and activities are ready for all digital nomads
|
Carefully chosen locations that offer an array of services and activities ready for all digital nomads
|
||||||
|
|
||||||
<button>[OUR LOCATIONS](/)</button>
|
<button>[OUR LOCATIONS](/locations)</button>
|
||||||
|
|
||||||
{% end %}
|
{% end %}
|
||||||
|
|
||||||
<!-- section 4 -->
|
<!-- section 4 -->
|
||||||
|
|
||||||
{% row(style="" margin="narrow" padding="top") %}
|
{% row(style="" margin="moderate" padding="top") %}
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
@@ -80,7 +89,7 @@ Live in sustainable and planet-conscious structures built to support the planet
|
|||||||
|
|
||||||
|||
|
|||
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|||
|
|||
|
||||||
|
|
||||||
@@ -92,19 +101,19 @@ Take advantage of a high-speed, sovereign and decentralized internet connection!
|
|||||||
|
|
||||||
<!-- section 4-2-->
|
<!-- section 4-2-->
|
||||||
|
|
||||||
{% row(style="" margin="narrow" padding="none") %}
|
{% row(style="" margin="moderate" padding="none") %}
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|||
|
|||
|
||||||
|
|
||||||
### **SUPPORT LOCALS**
|
### **SUPPORT LOCALS**
|
||||||
|
|
||||||
Tackle ECG concerns by working with local communities to empower them
|
Tackle ESG concerns by working with local communities to empower them
|
||||||
|
|
||||||
|||
|
|||
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|||
|
|||
|
||||||
|
|
||||||
@@ -116,9 +125,9 @@ We created an environment which allows everyone to work together easily and effe
|
|||||||
|
|
||||||
<!-- section 4-3-->
|
<!-- section 4-3-->
|
||||||
|
|
||||||
{% row(style="" margin="narrow" padding="bottom") %}
|
{% row(style="" margin="moderate" padding="bottom") %}
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|||
|
|||
|
||||||
|
|
||||||
@@ -128,7 +137,7 @@ Enjoy the benefits of community-building sessions and tools built specifically f
|
|||||||
|
|
||||||
|||
|
|||
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|||
|
|||
|
||||||
|
|
||||||
@@ -140,7 +149,7 @@ Enjoy all the cultural, natural, sports and networking evnts of the locations!
|
|||||||
|
|
||||||
<!-- section 5 -->
|
<!-- section 5 -->
|
||||||
|
|
||||||
{% row(style="center margin") %}
|
{% row(style="right" reverse="rightreserve" reserve="rightreserve" margin="moderate" padding="both") %}
|
||||||
|
|
||||||
## REGENERATE <br /> YOURSELF
|
## REGENERATE <br /> YOURSELF
|
||||||
|
|
||||||
@@ -151,24 +160,27 @@ empowers the local community!
|
|||||||
|
|
||||||
|||
|
|||
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
{% end %}
|
{% end %}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- section 6 -->
|
<!-- section 6 -->
|
||||||
|
|
||||||
{% row(style="center margin narrow") %}
|
{% row(style="center" margin="narrow" padding="top") %}
|
||||||
|
|
||||||
## START YOUR QURWORLD <br> EXPERIENCE NOW!
|
## START YOUR OURWORLD <br> EXPERIENCE NOW!
|
||||||
|
|
||||||
Begin your nomadic journey with us.
|
Begin your nomadic journey with us.
|
||||||
|
|
||||||
<button>[OUR LOCATIONS](/)</button>
|
<button>[OUR LOCATIONS](/locations)</button>
|
||||||
|
|
||||||
{% end %}
|
{% end %}
|
||||||
|
|
||||||
{% row(margin="header" bgPath="RGAsset21.png" bgStyle="full") %}
|
{% row(margin="header" bgPath="journey.jpg" bgStyle="full") %}
|
||||||
|
|
||||||
<div class="img"></div>
|
<div class="img"></div>
|
||||||
|
|
||||||
{% end %}
|
{% end %}
|
||||||
|
|
||||||
|
BIN
content/home/journey.jpg
Normal file
After Width: | Height: | Size: 636 KiB |
BIN
content/home/location.jpg
Normal file
After Width: | Height: | Size: 218 KiB |
BIN
content/invest/img/bambi2.png
Normal file
After Width: | Height: | Size: 6.2 MiB |
BIN
content/invest/img/bed.png
Normal file
After Width: | Height: | Size: 6.4 KiB |
BIN
content/invest/img/dar2.png
Normal file
After Width: | Height: | Size: 5.6 MiB |
BIN
content/invest/img/dubai2.png
Normal file
After Width: | Height: | Size: 1.0 MiB |
BIN
content/invest/img/fun2.png
Normal file
After Width: | Height: | Size: 1.7 MiB |
BIN
content/invest/img/invest.png
Normal file
After Width: | Height: | Size: 1.8 MiB |
BIN
content/invest/img/jp2.png
Normal file
After Width: | Height: | Size: 3.0 MiB |
BIN
content/invest/img/nile2.png
Normal file
After Width: | Height: | Size: 1.6 MiB |
BIN
content/invest/img/turkey2.png
Normal file
After Width: | Height: | Size: 2.0 MiB |
32
content/invest/index.md
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
---
|
||||||
|
title: "invest"
|
||||||
|
description: ""
|
||||||
|
date: 2018-09-14
|
||||||
|
updated: 2021-02-20
|
||||||
|
draft: false
|
||||||
|
weight: 4
|
||||||
|
---
|
||||||
|
|
||||||
|
<div class="container mx-auto">
|
||||||
|
|
||||||
|
<!-- section 1 (JP) -->
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
{% row(style="center" bgColor="#FFFFFF" margin="moderate" padding="both") %}
|
||||||
|
|
||||||
|
# BECOME AN INVESTOR
|
||||||
|
|
||||||
|
<BR>
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
<BR>
|
||||||
|
|
||||||
|
<button><a href="mailto:info@ourworld.tf">Contact Us</a></button>
|
||||||
|
|
||||||
|
{% end %}
|
||||||
|
|
||||||
|
</div>
|
BIN
content/locations/LOCATIONS_img.png
Normal file
After Width: | Height: | Size: 1.8 MiB |
Before Width: | Height: | Size: 952 KiB |
Before Width: | Height: | Size: 318 KiB |
BIN
content/locations/img/bambi2.jpg
Normal file
After Width: | Height: | Size: 700 KiB |
BIN
content/locations/img/bed.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
content/locations/img/dar2.jpg
Normal file
After Width: | Height: | Size: 498 KiB |
BIN
content/locations/img/dubai2.png
Normal file
After Width: | Height: | Size: 556 KiB |
BIN
content/locations/img/fun2.png
Normal file
After Width: | Height: | Size: 897 KiB |
BIN
content/locations/img/jp2.jpg
Normal file
After Width: | Height: | Size: 353 KiB |
BIN
content/locations/img/nile2.jpg
Normal file
After Width: | Height: | Size: 490 KiB |
BIN
content/locations/img/turkey2.png
Normal file
After Width: | Height: | Size: 894 KiB |
@@ -1,110 +1,182 @@
|
|||||||
---
|
---
|
||||||
title: "Locations"
|
title: "locations"
|
||||||
description: ""
|
description: ""
|
||||||
date: 2018-09-14
|
date: 2018-09-14
|
||||||
updated: 2021-02-20
|
updated: 2021-02-20
|
||||||
draft: false
|
draft: false
|
||||||
weight: 1
|
weight: 2
|
||||||
---
|
---
|
||||||
|
|
||||||
<!-- section 1 (heade FF TWIN) -->
|
<br>
|
||||||
|
|
||||||
{% row(style="center" bgPath="bg_home.jpg" bgStyle="hero" margin="header") %}
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
### provide a platform which allows us to restore the original intent of the Internet<br>where everyone is equal, communication is direct, secure and private<br>where you can trust the information presented<br>where everything is free without becoming a product.
|
|
||||||
|
|
||||||
|
|
||||||
<button>[KNOW MORE](/vision/#fflow_grid)</button>
|
|
||||||
|
|
||||||
{% end %}
|
|
||||||
|
|
||||||
<!-- section 2 (FF LIFE) -->
|
|
||||||
|
|
||||||
{% row(bgColor="#f0ece8" margin="moderate" padding="top" id="fflow_grid") %}
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
|||
|
|
||||||
|
|
||||||
## IT STARTS WITH <br> THE FREEFLOW NETWORK
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
People like you and me deploy FreeFlow Nodes to provide the required compute and storage capacity.
|
|
||||||
|
|
||||||
Our unique operating system interconnects these nodes to create the FreeFlow Network, our own sovereign and decentralized Internet.
|
|
||||||
|
|
||||||
<button>[KNOW MORE](/node)</button>
|
|
||||||
|
|
||||||
{% end %}
|
|
||||||
|
|
||||||
|
|
||||||
{% fflow_grid() %}
|
|
||||||
|
|
||||||
## fflow_grid
|
|
||||||
|
|
||||||
{% end %}
|
|
||||||
|
|
||||||
{% row(bgColor="#D9E7DF" margin="moderate" padding="top") %}
|
|
||||||
|
|
||||||
## GET YOUR FREEFLOW TWIN
|
|
||||||
### YOU BECOME THE CENTER OF YOUR INTERNET.
|
|
||||||
|
|
||||||
The FreeFlow Twin allows everyone to experience a more sustainable and safe Internet Life.
|
|
||||||
|
|
||||||
By eliminating the need for centralized servers, the FreeFlow Twin allows you, the user, to be the only central point of data accumulation, communication and execution of digital capabilities.
|
|
||||||
|
|
||||||
<button>[KNOW MORE](/twin)</button>
|
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
|||
|
<!-- section 1 (JP) -->
|
||||||
|
|
||||||

|
{% row(bgColor="#FFFFFF" margin="moderate" padding="both" id="fflow_grid") %}
|
||||||
|
|
||||||
{% end %}
|

|
||||||
|
|
||||||
|
|
||||||
{% fflow_twin() %}
|
|
||||||
|
|
||||||
## fflow_twin
|
|
||||||
|
|
||||||
{% end %}
|
|
||||||
|
|
||||||
{% row(margin="moderate" bgColor="#F9F8F6" padding="top") %}
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
|||
|
|||
|
||||||
|
|
||||||
## EXPERIENCES <br> ARE BEING CREATED
|
### JUNGLE PARADISE
|
||||||
|
|
||||||
<br>
|
RESORT IN ZANZIBAR, TANZANIA
|
||||||
|
|
||||||
Numerous applications (experiences) will be available soon to users of the FreeFlow Network.
|
<p style='font-size: 15px'>
|
||||||
|
Jungle Paradise is based at Mbweni in Zanzibar and is home to a boutique hotel, botanical gardens and ruins with a rich history. The location was instrumental in abolishing slavery and had a school where mainly slave children had a chance to get educated and become free. The ruins are surrounded by a beautiful botanic garden which supports over 600 different kinds of tree species. It has a mature rainforest atmosphere, only found in a few other places in Zanzibar and Pemba. It has many areas of native plants, including the coral rag forest on the cliff and mangroves on the shoreline.
|
||||||
|
</p>
|
||||||
|
|
||||||
Each experience is decentralized and allows users to be fully private and secure.
|
<p style='font-size: 15px'>
|
||||||
|
This location in the capital is ideal for digital nomads as they have quick access to Zanzibar's business district and airport, while being in a remote and peaceful neighbourhood.
|
||||||
|
</p>
|
||||||
|
|
||||||
<button>[KNOW MORE](/experiences)</button>
|
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<p style='font-size: 15px'>
|
||||||
|
46 ROOMS
|
||||||
|
</p>
|
||||||
|
|
||||||
{% end %}
|
{% end %}
|
||||||
|
|
||||||
{% fflow_experiences() %}
|
<!-- section 2 (Fun beach) -->
|
||||||
|
|
||||||
## fflow_experiences
|
{% row(reverse="rightreserve" style="right" bgColor="#F2F2F2" margin="moderate" padding="top" id="fflow_grid") %}
|
||||||
|
|
||||||
|
### FUN BEACH
|
||||||
|
HOTEL IN ZANZIBAR, TANZANIA
|
||||||
|
|
||||||
|
<p style='font-size: 15px'>
|
||||||
|
Fun Beach is a beachfront property in the south-east of Zanzibar which provides a far more relaxed, holiday vibe. It is located between Jambiani and Paje in Zanzibar, an ideal location in close proximity to the Zanzibar nightlife but sufficiently far from the busy tourist hot spots, therefore a perfect fit for digital nomads.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p style='font-size: 15px'>
|
||||||
|
The top class restaurant offers breakfast, lunch and dinner in a range of cuisines - international, Indian, Arabian and more.There are two pools, sized 26m and 27m, on the beach front of the property flowing into each other. They provide a full view of the Indian Ocean. There is also a pool in the centre with small islands and sitting areas. The game room features billiards, ping pong, and a football table in addition to a TV and library area. Throughout Fun Beach there is ultra-fast wifi connectivity.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<div class="rightImg">
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p style='font-size: 15px'>
|
||||||
|
40 ROOMS
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|||
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
{% end %}
|
{% end %}
|
||||||
|
|
||||||
{% row(style="center" margin="tight" bgColor="#f9f8f6") %}
|
<!-- section 3 (Veda boats) -->
|
||||||
|
|
||||||

|
{% row(bgColor="#FFFFFF" margin="moderate" padding="both" id="fflow_grid") %}
|
||||||
|
|
||||||
### Become part of this movement where we create <br>a new version of the internet with us in the center.
|

|
||||||
|
|
||||||
<button>[TAKE PART](/take-part)</button>
|
|||
|
||||||
|
|
||||||
<br>
|
### NILE VEDA
|
||||||
|
BOATS IN LUXOR, EGYPT
|
||||||
|
|
||||||
{% end %}
|
<p style='font-size: 15px'>
|
||||||
|
Dahabiyas are traditional sailing boats used on the Nile river. This location includes four dahabiyas that offer peaceful and organic platforms for its visitors. The boats are located on the Nile River in Luxor, Egypt. They are originally designed for private trips along the Nile offering a unique and authentic experience with organic food, green energy, and a warm-hearted crew. The four dahabiyas total have 29 rooms and 10 suites that can host up to 78 people. Each room has a private bathroom. All boats have clean, modern and authentic communal areas for relaxation and co-working. There are many meeting spaces including an upper deck meeting room with a 360 degree panoramic view of the Nile.
|
||||||
|
<p>
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
<p style='font-size: 15px'>
|
||||||
|
39 ROOMS
|
||||||
|
<p>
|
||||||
|
|
||||||
|
{% end %}
|
||||||
|
|
||||||
|
|
||||||
|
<!-- section 4 (Yenice valley) -->
|
||||||
|
|
||||||
|
{% row(reverse="rightreserve" style="right" bgColor="#F2F2F2" margin="moderate" padding="top" id="fflow_grid") %}
|
||||||
|
|
||||||
|
### YENICE VALLEY
|
||||||
|
RESORT IN MUGLA, TURKEY
|
||||||
|
|
||||||
|
<p style='font-size: 15px'>
|
||||||
|
The concept of Yenice Valle grew from a love of traditional Turkish village life and the desire to sustain our natural environment. Yenice Valley has come to reality in a secluded valley, surrounded by tree-covered mountains, with accommodation built using traditional local materials, to include a treehouse, stone cottages, and a log cabin, each in plenty of space, well-furnished and fully equipped. The focal point is a stunning stone-built boutique hotel, which fits perfectly with the surrounding countryside.
|
||||||
|
<p>
|
||||||
|
|
||||||
|
<div class="rightImg">
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p style='font-size: 15px'>
|
||||||
|
55 ROOMS
|
||||||
|
<p>
|
||||||
|
|
||||||
|
|||
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
|
{% end %}
|
||||||
|
|
||||||
|
<!-- section 5 (Dar) -->
|
||||||
|
|
||||||
|
{% row(bgColor="#F2F2F2" reserve="rightreserve" margin="moderate" padding="top" id="fflow_grid") %}
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
|||
|
||||||
|
|
||||||
|
### CITY OF PEACE
|
||||||
|
RESORT IN DAR ES SALAAM, TANZANIA
|
||||||
|
|
||||||
|
<p style='font-size: 15px'>
|
||||||
|
We have a unique opportunity to acquire 2 million square metres of beachfront land just south of Dar-es-Salaam and turn it into a new home for digital nomads. The plot is 30km south-east of Dar-es-Salaam. It provides a refuge for digital nomads who wish to be away from city life and a staging point for those who want to visit the famous Serengeti National Park or Ngorongoro Crater, Lake Manyara, Sealous Game Reserve and Zanzibar. However, it is not unreasonably far from the business hub of Dar-es-Salaam and the airport.
|
||||||
|
<p>
|
||||||
|
|
||||||
|
<p style='font-size: 15px'>
|
||||||
|
There are 32 hectares of built-up land in the plot, consisting of 10 bungalows with thatched roofs. These bungalows have Wi-Fi, TVs, living areas, safes, tea & coffeemaking facilities and they all have terraces with ocean views.
|
||||||
|
<p>
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
<p style='font-size: 15px'>
|
||||||
|
60 ROOMS
|
||||||
|
<p>
|
||||||
|
|
||||||
|
{% end %}
|
||||||
|
|
||||||
|
<!-- section 5 (FARMS) -->
|
||||||
|
|
||||||
|
{% row(reverse="rightreserve" style="right" bgColor="#FFFFFF" reserve="rightreserve" margin="moderate" padding="top" id="fflow_grid") %}
|
||||||
|
|
||||||
|
### FARMS
|
||||||
|
MULTIPLE LANDS IN TANZANIA
|
||||||
|
|
||||||
|
<p style='font-size: 15px'>
|
||||||
|
Located in the middle of Lake Victoria, Lake Malawi and Lake Tanganyika, Tanzania has one of Africa's most fertile lands. The farm lands in Tanzania are significantly cheaper than lands in Zanzibar. We aim to acquire up to 500 hectares of land in mainland Tanzania. This acquisition will be done in phases based on the priorities of the project at the time.
|
||||||
|
<p>
|
||||||
|
|
||||||
|
<p style='font-size: 15px'>
|
||||||
|
Up to 50 hectares of land is planned to be acquired. Our team is still scouting for more farmlands across the Zanzibar archipelago. Many pieces of land are identified and we are in contact with the relevant authorities for further steps. Even though the identified farming lands are in many locations in Zanzibar, we plan to acquire a majority of the land from Bambi in Unguja Island and Pemba Island. The first land in Bambi has already been purchased.
|
||||||
|
<p>
|
||||||
|
|
||||||
|
|||
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
{% end %}
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.rightImg{
|
||||||
|
display: flex;
|
||||||
|
justify-content: right;
|
||||||
|
}
|
||||||
|
</style>
|
Before Width: | Height: | Size: 436 KiB |
Before Width: | Height: | Size: 3.9 MiB |
Before Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 448 KiB |
Before Width: | Height: | Size: 1.0 MiB |
Before Width: | Height: | Size: 438 KiB |
Before Width: | Height: | Size: 1.0 MiB |
Before Width: | Height: | Size: 764 KiB |
@@ -37,6 +37,10 @@ img[src*="#sm"] {
|
|||||||
width: 200px;
|
width: 200px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
img[src*="#iconsize"] {
|
||||||
|
width: 200px;
|
||||||
|
}
|
||||||
|
|
||||||
img[src*="#md"] {
|
img[src*="#md"] {
|
||||||
width: 300px;
|
width: 300px;
|
||||||
}
|
}
|
||||||
@@ -65,6 +69,15 @@ img[src*="#tft_img"] {
|
|||||||
margin: 8px;
|
margin: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
img[src*="#icon"] {
|
||||||
|
width: 65px;
|
||||||
|
margin: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
img[src*="#fig"] {
|
||||||
|
width: 150px;
|
||||||
|
}
|
||||||
|
|
||||||
.logo_size {
|
.logo_size {
|
||||||
width: 200px;
|
width: 200px;
|
||||||
}
|
}
|
||||||
@@ -74,27 +87,30 @@ img[src*="#tft_img"] {
|
|||||||
font-family: "lato";
|
font-family: "lato";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
color: #5a5a5a;
|
||||||
|
}
|
||||||
@layer components {
|
@layer components {
|
||||||
h1 {
|
h1 {
|
||||||
@apply text-3xl lg:text-5xl xl:text-7xl font-bold leading-none my-4;
|
@apply text-3xl md:text-4xl lg:text-6xl font-bold leading-none my-4;
|
||||||
font-family: "lato", sans-serif;
|
font-family: "lato", sans-serif;
|
||||||
line-height: 0.8;
|
line-height: 0.9;
|
||||||
|
|
||||||
}
|
}
|
||||||
h1 strong {
|
h1 strong {
|
||||||
@apply font-medium;
|
@apply font-medium;
|
||||||
}
|
}
|
||||||
h2 {
|
h2 {
|
||||||
@apply text-3xl md:text-4xl lg:text-5xl xl:text-8xl font-bold leading-none my-4;
|
@apply text-3xl md:text-4xl lg:text-5xl font-bold leading-none my-4;
|
||||||
font-family: "lato", sans-serif;
|
font-family: "lato", sans-serif;
|
||||||
line-height: 0.8;
|
line-height: 0.9;
|
||||||
font-size:4.5rem
|
|
||||||
}
|
}
|
||||||
h2 strong {
|
h2 strong {
|
||||||
@apply font-medium;
|
@apply font-medium;
|
||||||
}
|
}
|
||||||
h3 {
|
h3 {
|
||||||
@apply text-xl lg:text-3xl font-normal my-4;
|
@apply text-xl lg:text-4xl font-normal my-4;
|
||||||
}
|
}
|
||||||
h3 strong {
|
h3 strong {
|
||||||
@apply font-medium;
|
@apply font-medium;
|
||||||
@@ -170,12 +186,12 @@ header .freeflow {
|
|||||||
}
|
}
|
||||||
|
|
||||||
footer .freeflow {
|
footer .freeflow {
|
||||||
width: 100vw;
|
background-color: #FFFFFF;
|
||||||
background-color: #eae8e3;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 40px;
|
padding-top: 40px;
|
||||||
|
padding-bottom: 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
footer .freeflow img {
|
footer .freeflow img {
|
||||||
@@ -371,6 +387,12 @@ header {
|
|||||||
padding: 80px 0;
|
padding: 80px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
img[src*="#medium"] {
|
||||||
|
width: 300px;
|
||||||
|
}
|
||||||
|
img[src*="#iconsize"] {
|
||||||
|
width: 130px;
|
||||||
|
}
|
||||||
h2 {
|
h2 {
|
||||||
font-size: 3rem;
|
font-size: 3rem;
|
||||||
}
|
}
|
||||||
|
2
start.sh
@@ -1,7 +1,7 @@
|
|||||||
# builds if executable isn't foound
|
# builds if executable isn't foound
|
||||||
if [[ ! -f "tailwindcss" ]]
|
if [[ ! -f "tailwindcss" ]]
|
||||||
then
|
then
|
||||||
sh build.sh
|
bash build.sh
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# initialized and configures tailwind if not configured
|
# initialized and configures tailwind if not configured
|
||||||
|
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 42 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 290 KiB |
Before Width: | Height: | Size: 40 KiB |
Before Width: | Height: | Size: 49 KiB |
Before Width: | Height: | Size: 39 KiB |
Before Width: | Height: | Size: 37 KiB |
Before Width: | Height: | Size: 38 KiB |
Before Width: | Height: | Size: 46 KiB |
Before Width: | Height: | Size: 52 KiB |
Before Width: | Height: | Size: 48 KiB |
Before Width: | Height: | Size: 38 KiB |
BIN
static/images/favicon.png
Normal file
After Width: | Height: | Size: 3.6 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 352 KiB |
Before Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 345 KiB |
Before Width: | Height: | Size: 50 KiB |
Before Width: | Height: | Size: 39 KiB |
Before Width: | Height: | Size: 3.6 KiB |
Before Width: | Height: | Size: 38 KiB |
Before Width: | Height: | Size: 48 KiB |
Before Width: | Height: | Size: 48 KiB |
Before Width: | Height: | Size: 51 KiB |
Before Width: | Height: | Size: 37 KiB |
Before Width: | Height: | Size: 39 KiB |
Before Width: | Height: | Size: 107 KiB |
Before Width: | Height: | Size: 48 KiB |