diff --git a/README.md b/README.md
index 4d001e9..9c3ae3a 100644
--- a/README.md
+++ b/README.md
@@ -1,13 +1,106 @@
-# Welcome to Eden Website Repository
+# EDEN Website (Updated)
-## About
+website on https://zanzibar.ourworld.tf
-The official website of Eden: A Co-Living Community for Change-Makers & Digital Nomads
+## Developers
-[https://zanzibar.ourworld.tf/](https://zanzibar.ourworld.tf/)
+A website created using Zola, a static site generator.
-Last Updated: March 2023
+- 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
-## Contribution
+### Getting Started
-Feel free to [create a new issue](https://github.com/ourworld-tsc/www_ourparadise_new/issues) to report an error on the website, or if you have any suggestions on website improvements.
+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/content/_index.md b/content/_index.md
index 987dd7c..d972ab5 100644
--- a/content/_index.md
+++ b/content/_index.md
@@ -7,5 +7,5 @@ draft: false
sort_by: weight
weight: 1
extra:
- logo_path: images/logo_placeholder_eden_3.png
+ logo_path: images/logo_placeholder_owp.png
---
diff --git a/content/about/img/about_header.jpg b/content/about/img/about_header.jpg
new file mode 100644
index 0000000..246c042
Binary files /dev/null and b/content/about/img/about_header.jpg differ
diff --git a/content/about/img/about_header.png b/content/about/img/about_header.png
new file mode 100644
index 0000000..a389943
Binary files /dev/null and b/content/about/img/about_header.png differ
diff --git a/content/about/img/footer.png b/content/about/img/footer.png
index 0231e61..9b8d92f 100644
Binary files a/content/about/img/footer.png and b/content/about/img/footer.png differ
diff --git a/content/about/img/manifesto.png b/content/about/img/manifesto.png
index 3f34bf8..567a6e5 100644
Binary files a/content/about/img/manifesto.png and b/content/about/img/manifesto.png differ
diff --git a/content/about/img/opwhy.jpg b/content/about/img/opwhy.jpg
index fedcab5..c81f79b 100644
Binary files a/content/about/img/opwhy.jpg and b/content/about/img/opwhy.jpg differ
diff --git a/content/about/img/our_why.png b/content/about/img/our_why.png
index 59af091..2221282 100644
Binary files a/content/about/img/our_why.png and b/content/about/img/our_why.png differ
diff --git a/content/about/img/purpose.jpg b/content/about/img/purpose.jpg
index 5d5696c..54ecf61 100644
Binary files a/content/about/img/purpose.jpg and b/content/about/img/purpose.jpg differ
diff --git a/content/about/img/who_we_are.png b/content/about/img/who_we_are.png
index 0231e61..9b8d92f 100644
Binary files a/content/about/img/who_we_are.png and b/content/about/img/who_we_are.png differ
diff --git a/content/about/index.md b/content/about/index.md
index e86d9fe..be76be3 100644
--- a/content/about/index.md
+++ b/content/about/index.md
@@ -9,7 +9,7 @@ weight: 2
-{% row(style="center narrow" margin="header" bgPath="img/opwhy.jpg" bgStyle="full") %}
+{% row(style="center narrow" margin="header" bgPath="img/about_header.png" bgStyle="full") %}
## About Us
diff --git a/content/action/img/LOCATIONS_img.png b/content/action/img/LOCATIONS_img.png
index d22d2d9..bd01ce4 100644
Binary files a/content/action/img/LOCATIONS_img.png and b/content/action/img/LOCATIONS_img.png differ
diff --git a/content/action/img/action_header.HEIC b/content/action/img/action_header.HEIC
new file mode 100644
index 0000000..063ab0b
Binary files /dev/null and b/content/action/img/action_header.HEIC differ
diff --git a/content/action/img/action_header.jpg b/content/action/img/action_header.jpg
new file mode 100644
index 0000000..cfdd1b6
Binary files /dev/null and b/content/action/img/action_header.jpg differ
diff --git a/content/action/img/action_header.png b/content/action/img/action_header.png
new file mode 100644
index 0000000..99f0d13
Binary files /dev/null and b/content/action/img/action_header.png differ
diff --git a/content/action/img/educationheader.jpg b/content/action/img/educationheader.jpg
index 00b5046..ea6097f 100644
Binary files a/content/action/img/educationheader.jpg and b/content/action/img/educationheader.jpg differ
diff --git a/content/action/img/join_header.png b/content/action/img/join_header.png
index c79951d..5a65e2f 100644
Binary files a/content/action/img/join_header.png and b/content/action/img/join_header.png differ
diff --git a/content/action/img/nonprofit.jpg b/content/action/img/nonprofit.jpg
index c5119a6..f4da23c 100644
Binary files a/content/action/img/nonprofit.jpg and b/content/action/img/nonprofit.jpg differ
diff --git a/content/action/img/paradise.jpeg b/content/action/img/paradise.jpeg
index f40c1a2..4ac9a23 100644
Binary files a/content/action/img/paradise.jpeg and b/content/action/img/paradise.jpeg differ
diff --git a/content/action/img/token_ownership.jpg b/content/action/img/token_ownership.jpg
index b38a464..ee59558 100644
Binary files a/content/action/img/token_ownership.jpg and b/content/action/img/token_ownership.jpg differ
diff --git a/content/action/index.md b/content/action/index.md
index a82229b..f4d4a52 100644
--- a/content/action/index.md
+++ b/content/action/index.md
@@ -7,13 +7,13 @@ draft: false
weight: 6
---
-{% row(style="center narrow" margin="header" bgPath="img/join_header.png" bgStyle="full") %}
+{% row(style="center narrow" margin="header" bgPath="img/action_header.png" bgStyle="full") %}
## Calling Dreamers & Doers
### A Dream Becomes Reality
-There are many ways to join in on the efforts to bring the vision to life. Come to Zanzibar to collaborate in-person, buy EDN (below), or support from afar. Today we are already operating from this location and making initial steps.
+There are many ways to join in on the efforts to bring the vision to life. Come to Zanzibar to collaborate in-person, buy EDEN (below), or support from afar. Today we are already operating from this location and making initial steps.
Our primary focus is on **raising $4M USD by June 2023** in order to take on full ownership and finance the project. We cannot do this without the support of like-minded believers.
@@ -35,7 +35,7 @@ Our primary focus is on **raising $4M USD by June 2023** in order to take on ful
# A Token for Co-Ownership
-We are introducing a token called EDN. EDN Tokens are not crypto currencies, they are pre-purchase tokens of Eden and represent ownership/utilization in the ecosystem. You can always re-sell your EDN tokens or use them to participate in the Eden universe.
+We are introducing a token called EDN. EDN Tokens are not crypto currencies, they are pre-purchase tokens of Eden and represent ownership/utilization in the ecosystem. You can always re-sell your EDN tokens or use them to participate in the Eden World.
{% end %}
diff --git a/content/activities/boats/img/activities_boats.png b/content/activities/boats/img/activities_boats.png
index 0ed4f9f..fb016b2 100644
Binary files a/content/activities/boats/img/activities_boats.png and b/content/activities/boats/img/activities_boats.png differ
diff --git a/content/activities/chumbe/img/activities_chumbe.jpeg b/content/activities/chumbe/img/activities_chumbe.jpeg
index 5800ade..20f32e5 100644
Binary files a/content/activities/chumbe/img/activities_chumbe.jpeg and b/content/activities/chumbe/img/activities_chumbe.jpeg differ
diff --git a/content/activities/chumbe/index.md b/content/activities/chumbe/index.md
index e2d5df2..c464946 100644
--- a/content/activities/chumbe/index.md
+++ b/content/activities/chumbe/index.md
@@ -13,7 +13,7 @@ weight: 6
### Activities
-Friends of OurParadise, Chumbe Island is one of the world's most successful ecotourism projects. In 1994 the reef surrounding Chumbe island was created as Tanzania's first Marine National Park. The island itself, covered with lush mangrove forest, is a designated forest reserve. Trips to Chumbe leave from our property each day.
+Friends of Eden, Chumbe Island is one of the world's most successful ecotourism projects. In 1994 the reef surrounding Chumbe island was created as Tanzania's first Marine National Park. The island itself, covered with lush mangrove forest, is a designated forest reserve. Trips to Chumbe leave from our property each day.
diff --git a/content/activities/gardens/img/activities_gardens.png b/content/activities/gardens/img/activities_gardens.png
index 513ab76..11f81fc 100644
Binary files a/content/activities/gardens/img/activities_gardens.png and b/content/activities/gardens/img/activities_gardens.png differ
diff --git a/content/activities/img/activities_header.HEIC b/content/activities/img/activities_header.HEIC
new file mode 100644
index 0000000..f5b65c7
Binary files /dev/null and b/content/activities/img/activities_header.HEIC differ
diff --git a/content/activities/img/activities_header.png b/content/activities/img/activities_header.png
index 431b037..70aa255 100644
Binary files a/content/activities/img/activities_header.png and b/content/activities/img/activities_header.png differ
diff --git a/content/activities/img/activities_header_2.png b/content/activities/img/activities_header_2.png
index 99f8724..f675fe1 100644
Binary files a/content/activities/img/activities_header_2.png and b/content/activities/img/activities_header_2.png differ
diff --git a/content/activities/img/boats.png b/content/activities/img/boats.png
index 13021dd..d5cef6e 100644
Binary files a/content/activities/img/boats.png and b/content/activities/img/boats.png differ
diff --git a/content/activities/img/gardens.png b/content/activities/img/gardens.png
index adb2900..e855fb2 100644
Binary files a/content/activities/img/gardens.png and b/content/activities/img/gardens.png differ
diff --git a/content/activities/img/mangroves.png b/content/activities/img/mangroves.png
index 0fa069c..a0bf8e3 100644
Binary files a/content/activities/img/mangroves.png and b/content/activities/img/mangroves.png differ
diff --git a/content/activities/img/relax.png b/content/activities/img/relax.png
index 93e9ead..db87faf 100644
Binary files a/content/activities/img/relax.png and b/content/activities/img/relax.png differ
diff --git a/content/activities/img/ruins.png b/content/activities/img/ruins.png
index 20497de..b20cd36 100644
Binary files a/content/activities/img/ruins.png and b/content/activities/img/ruins.png differ
diff --git a/content/activities/index.md b/content/activities/index.md
index 3ee72a7..a3c5ab3 100644
--- a/content/activities/index.md
+++ b/content/activities/index.md
@@ -7,7 +7,7 @@ draft: false
weight: 4
---
-{% row(style="center narrow" margin="header" bgPath="img/activities_header_2.png" bgStyle="full") %}
+{% row(style="center narrow" margin="header" bgPath="img/activities_header.png" bgStyle="full") %}
## Experience Authentic Paradise
diff --git a/content/activities/mangroves/img/activities_mangroves.png b/content/activities/mangroves/img/activities_mangroves.png
index 2cfc9b4..ae4945e 100644
Binary files a/content/activities/mangroves/img/activities_mangroves.png and b/content/activities/mangroves/img/activities_mangroves.png differ
diff --git a/content/activities/relax/img/activities_relax.png b/content/activities/relax/img/activities_relax.png
index 368c246..805d9b0 100644
Binary files a/content/activities/relax/img/activities_relax.png and b/content/activities/relax/img/activities_relax.png differ
diff --git a/content/activities/ruins/img/activities_ruins.png b/content/activities/ruins/img/activities_ruins.png
index a7b33d6..45f38f1 100644
Binary files a/content/activities/ruins/img/activities_ruins.png and b/content/activities/ruins/img/activities_ruins.png differ
diff --git a/content/home/img/activities_big.png b/content/home/img/activities_big.png
index d57c353..4c3e631 100644
Binary files a/content/home/img/activities_big.png and b/content/home/img/activities_big.png differ
diff --git a/content/home/img/coown_big.png b/content/home/img/coown_big.png
index 33e3ecb..af2ba94 100644
Binary files a/content/home/img/coown_big.png and b/content/home/img/coown_big.png differ
diff --git a/content/home/img/home_about.jpg b/content/home/img/home_about.jpg
new file mode 100644
index 0000000..5008f60
Binary files /dev/null and b/content/home/img/home_about.jpg differ
diff --git a/content/home/img/home_about.png b/content/home/img/home_about.png
new file mode 100644
index 0000000..69c3c71
Binary files /dev/null and b/content/home/img/home_about.png differ
diff --git a/content/home/img/home_action.jpg b/content/home/img/home_action.jpg
new file mode 100644
index 0000000..d6f3abd
Binary files /dev/null and b/content/home/img/home_action.jpg differ
diff --git a/content/home/img/home_action.png b/content/home/img/home_action.png
new file mode 100644
index 0000000..eb0c78c
Binary files /dev/null and b/content/home/img/home_action.png differ
diff --git a/content/home/img/home_activities.jpg b/content/home/img/home_activities.jpg
new file mode 100644
index 0000000..d6a25e6
Binary files /dev/null and b/content/home/img/home_activities.jpg differ
diff --git a/content/home/img/home_activities.png b/content/home/img/home_activities.png
new file mode 100644
index 0000000..80aee63
Binary files /dev/null and b/content/home/img/home_activities.png differ
diff --git a/content/home/img/home_header.jpg b/content/home/img/home_header.jpg
new file mode 100644
index 0000000..09a216e
Binary files /dev/null and b/content/home/img/home_header.jpg differ
diff --git a/content/home/img/home_header.png b/content/home/img/home_header.png
new file mode 100644
index 0000000..898ed25
Binary files /dev/null and b/content/home/img/home_header.png differ
diff --git a/content/home/img/home_location.jpg b/content/home/img/home_location.jpg
new file mode 100644
index 0000000..64e7913
Binary files /dev/null and b/content/home/img/home_location.jpg differ
diff --git a/content/home/img/home_location.png b/content/home/img/home_location.png
new file mode 100644
index 0000000..99dd98e
Binary files /dev/null and b/content/home/img/home_location.png differ
diff --git a/content/home/img/home_protection.jpg b/content/home/img/home_protection.jpg
new file mode 100644
index 0000000..4625181
Binary files /dev/null and b/content/home/img/home_protection.jpg differ
diff --git a/content/home/img/home_protection.png b/content/home/img/home_protection.png
new file mode 100644
index 0000000..444e33d
Binary files /dev/null and b/content/home/img/home_protection.png differ
diff --git a/content/home/img/location_big.jpg b/content/home/img/location_big.jpg
index 9ae067b..3b56851 100644
Binary files a/content/home/img/location_big.jpg and b/content/home/img/location_big.jpg differ
diff --git a/content/home/img/new_home.png b/content/home/img/new_home.png
index 3ddcea2..c554cba 100644
Binary files a/content/home/img/new_home.png and b/content/home/img/new_home.png differ
diff --git a/content/home/img/protection_big.jpg b/content/home/img/protection_big.jpg
index ce3b7ed..4c3c30a 100644
Binary files a/content/home/img/protection_big.jpg and b/content/home/img/protection_big.jpg differ
diff --git a/content/home/img/ruins_big.jpg b/content/home/img/ruins_big.jpg
index 30ae416..2f01056 100644
Binary files a/content/home/img/ruins_big.jpg and b/content/home/img/ruins_big.jpg differ
diff --git a/content/home/index.md b/content/home/index.md
index 114fa25..b867f93 100644
--- a/content/home/index.md
+++ b/content/home/index.md
@@ -9,7 +9,7 @@ weight: 1
-{% row(style="center narrow" margin="header" bgPath="img/new_home.png" bgStyle="full") %}
+{% row(style="center narrow" margin="header" bgPath="img/home_header.png" bgStyle="full") %}
## Welcome to Eden
@@ -23,7 +23,7 @@ On the west coast of Zanzibar sits a beautiful and historical community space fo
-{% row(style="center narrow" margin="header" bgPath="img/ruins_big.jpg" bgStyle="full") %}
+{% row(style="center narrow" margin="header" bgPath="img/home_about.png" bgStyle="full") %}
## [About](/about)
@@ -33,7 +33,7 @@ Learn more about our project and who we are.
-{% row(style="center narrow" margin="header" bgPath="img/location_big.jpg" bgStyle="full") %}
+{% row(style="center narrow" margin="header" bgPath="img/home_location.png" bgStyle="full") %}
## [Location](/location)
@@ -43,7 +43,7 @@ Get to know where we are and its history.
-{% row(style="center narrow" margin="header" bgPath="img/activities_big.png" bgStyle="full") %}
+{% row(style="center narrow" margin="header" bgPath="img/home_activities.png" bgStyle="full") %}
## [Activities](/activities)
@@ -53,7 +53,7 @@ Find out what paradise has to offer.
-{% row(style="center narrow" margin="header" bgPath="img/protection_big.jpg" bgStyle="full") %}
+{% row(style="center narrow" margin="header" bgPath="img/home_protection.png" bgStyle="full") %}
## [Protection](/protection)
@@ -63,7 +63,7 @@ Discover how we aim to preserve this place.
-{% row(style="center narrow" margin="header" bgPath="img/coown_big.png" bgStyle="full") %}
+{% row(style="center narrow" margin="header" bgPath="img/home_action.png" bgStyle="full") %}
## [Action](/action)
diff --git a/content/location/chumbe/img/accommodatie-zanzibar-chumbe-island-coral-park00006.jpeg b/content/location/chumbe/img/accommodatie-zanzibar-chumbe-island-coral-park00006.jpeg
index 8e8e4f1..b9b0d25 100644
Binary files a/content/location/chumbe/img/accommodatie-zanzibar-chumbe-island-coral-park00006.jpeg and b/content/location/chumbe/img/accommodatie-zanzibar-chumbe-island-coral-park00006.jpeg differ
diff --git a/content/location/chumbe/img/chumbe1.jpeg b/content/location/chumbe/img/chumbe1.jpeg
index 74f3009..93c1305 100644
Binary files a/content/location/chumbe/img/chumbe1.jpeg and b/content/location/chumbe/img/chumbe1.jpeg differ
diff --git a/content/location/chumbe/img/chumbe2.png b/content/location/chumbe/img/chumbe2.png
index ee3e310..ad5be40 100644
Binary files a/content/location/chumbe/img/chumbe2.png and b/content/location/chumbe/img/chumbe2.png differ
diff --git a/content/location/chumbe/img/chumbe6.jpeg b/content/location/chumbe/img/chumbe6.jpeg
index 6eaee57..af3052a 100644
Binary files a/content/location/chumbe/img/chumbe6.jpeg and b/content/location/chumbe/img/chumbe6.jpeg differ
diff --git a/content/location/chumbe/img/chumbe9.jpeg b/content/location/chumbe/img/chumbe9.jpeg
index a3034c7..9fd24b6 100644
Binary files a/content/location/chumbe/img/chumbe9.jpeg and b/content/location/chumbe/img/chumbe9.jpeg differ
diff --git a/content/location/chumbe/img/chumbe_header.png b/content/location/chumbe/img/chumbe_header.png
new file mode 100644
index 0000000..76348d3
Binary files /dev/null and b/content/location/chumbe/img/chumbe_header.png differ
diff --git a/content/location/chumbe/index.md b/content/location/chumbe/index.md
index 34219aa..df40115 100644
--- a/content/location/chumbe/index.md
+++ b/content/location/chumbe/index.md
@@ -8,7 +8,7 @@ weight: 3
---
-{% row(style="center narrow" margin="header" bgPath="img/chumbe2.png" bgStyle="full") %}
+{% row(style="center narrow" margin="header" bgPath="img/chumbe_header.png" bgStyle="full") %}
# Chumbe Island
diff --git a/content/location/history/img/history_header.jpg b/content/location/history/img/history_header.jpg
index eedc070..3c7a990 100644
Binary files a/content/location/history/img/history_header.jpg and b/content/location/history/img/history_header.jpg differ
diff --git a/content/location/history/img/history_header.png b/content/location/history/img/history_header.png
new file mode 100644
index 0000000..f004701
Binary files /dev/null and b/content/location/history/img/history_header.png differ
diff --git a/content/location/history/img/ruins_history.png b/content/location/history/img/ruins_history.png
index 058d705..66e81db 100644
Binary files a/content/location/history/img/ruins_history.png and b/content/location/history/img/ruins_history.png differ
diff --git a/content/location/history/index.md b/content/location/history/index.md
index 1909813..14e6b3b 100644
--- a/content/location/history/index.md
+++ b/content/location/history/index.md
@@ -7,7 +7,7 @@ draft: false
weight: 3
---
-{% row(style="center narrow" margin="header" bgPath="img/history_header.jpg" bgStyle="full") %}
+{% row(style="center narrow" margin="header" bgPath="img/history_header.png" bgStyle="full") %}
## Take a Look Back
diff --git a/content/location/img/ecobeach.png b/content/location/img/ecobeach.png
index ace0443..848d68e 100644
Binary files a/content/location/img/ecobeach.png and b/content/location/img/ecobeach.png differ
diff --git a/content/location/img/location_header.jpg b/content/location/img/location_header.jpg
new file mode 100644
index 0000000..c5fecbe
Binary files /dev/null and b/content/location/img/location_header.jpg differ
diff --git a/content/location/img/location_header.png b/content/location/img/location_header.png
new file mode 100644
index 0000000..4d7f73d
Binary files /dev/null and b/content/location/img/location_header.png differ
diff --git a/content/location/img/luxury.jpeg b/content/location/img/luxury.jpeg
index 228a3a0..17b74d9 100644
Binary files a/content/location/img/luxury.jpeg and b/content/location/img/luxury.jpeg differ
diff --git a/content/location/img/map.png b/content/location/img/map.png
index b3db7ad..8919304 100644
Binary files a/content/location/img/map.png and b/content/location/img/map.png differ
diff --git a/content/location/img/mbwenilocation1.jpeg b/content/location/img/mbwenilocation1.jpeg
index 425a7c0..fefd24e 100644
Binary files a/content/location/img/mbwenilocation1.jpeg and b/content/location/img/mbwenilocation1.jpeg differ
diff --git a/content/location/img/mbwenilocation2.jpeg b/content/location/img/mbwenilocation2.jpeg
index e394d73..3dd405c 100644
Binary files a/content/location/img/mbwenilocation2.jpeg and b/content/location/img/mbwenilocation2.jpeg differ
diff --git a/content/location/img/mbwenilocation3.jpeg b/content/location/img/mbwenilocation3.jpeg
index 74443a5..bcd1568 100644
Binary files a/content/location/img/mbwenilocation3.jpeg and b/content/location/img/mbwenilocation3.jpeg differ
diff --git a/content/location/img/mbweniprotection1.jpeg b/content/location/img/mbweniprotection1.jpeg
index 425a7c0..fefd24e 100644
Binary files a/content/location/img/mbweniprotection1.jpeg and b/content/location/img/mbweniprotection1.jpeg differ
diff --git a/content/location/img/mbweniprotection2.jpeg b/content/location/img/mbweniprotection2.jpeg
index e394d73..3dd405c 100644
Binary files a/content/location/img/mbweniprotection2.jpeg and b/content/location/img/mbweniprotection2.jpeg differ
diff --git a/content/location/img/mbweniprotection3.jpeg b/content/location/img/mbweniprotection3.jpeg
index 74443a5..bcd1568 100644
Binary files a/content/location/img/mbweniprotection3.jpeg and b/content/location/img/mbweniprotection3.jpeg differ
diff --git a/content/location/img/regenerative_farm.jpg b/content/location/img/regenerative_farm.jpg
index c5cb8c3..9d4c5a1 100644
Binary files a/content/location/img/regenerative_farm.jpg and b/content/location/img/regenerative_farm.jpg differ
diff --git a/content/location/img/zanzibarvillas.jpeg b/content/location/img/zanzibarvillas.jpeg
index 0be3dd8..6fae3dd 100644
Binary files a/content/location/img/zanzibarvillas.jpeg and b/content/location/img/zanzibarvillas.jpeg differ
diff --git a/content/location/index.md b/content/location/index.md
index 817190e..36f908d 100644
--- a/content/location/index.md
+++ b/content/location/index.md
@@ -8,7 +8,7 @@ weight: 3
---
-{% row(style="center narrow" margin="header" bgPath="img/luxury.jpeg" bgStyle="full") %}
+{% row(style="center narrow" margin="header" bgPath="img/location_header.png" bgStyle="full") %}
## Our Location
@@ -46,7 +46,7 @@ Discover authentic paradise. Roughly ten minutes from world heritage site Stone
For short term stays. A beachfront hotel that sits beside historical ruins, all surrounded by beautiful lush gardens featuring a wide variety of native and exotic plants.
-
+
|||
@@ -57,7 +57,7 @@ For short term stays. A beachfront hotel that sits beside historical ruins, all
For long-term stays. Two apartment buildings, with four three-bedroom spaces and one rooftop penthouse each. Private beach and direct access to Jungle Paradise.
-
+
{% end %}
@@ -79,7 +79,7 @@ We share space with historic ruins of a school for freed slaves (1874) with asso
The Gardens here are beautiful and mature, with more than 280 tree and plant species, many of which are very old and even endemic to the island.
-
+
{% end %}
diff --git a/content/location/mbweni/img/jungle11.jpeg b/content/location/mbweni/img/jungle11.jpeg
index e269f88..68d04ea 100644
Binary files a/content/location/mbweni/img/jungle11.jpeg and b/content/location/mbweni/img/jungle11.jpeg differ
diff --git a/content/location/mbweni/img/jungle4.jpeg b/content/location/mbweni/img/jungle4.jpeg
index e394d73..4ee722e 100644
Binary files a/content/location/mbweni/img/jungle4.jpeg and b/content/location/mbweni/img/jungle4.jpeg differ
diff --git a/content/location/mbweni/img/mbweni_header.png b/content/location/mbweni/img/mbweni_header.png
new file mode 100644
index 0000000..fc77f59
Binary files /dev/null and b/content/location/mbweni/img/mbweni_header.png differ
diff --git a/content/location/mbweni/img/mbwenilocation1.jpeg b/content/location/mbweni/img/mbwenilocation1.jpeg
index 425a7c0..6c35a29 100644
Binary files a/content/location/mbweni/img/mbwenilocation1.jpeg and b/content/location/mbweni/img/mbwenilocation1.jpeg differ
diff --git a/content/location/mbweni/img/mbwenilocation2.jpeg b/content/location/mbweni/img/mbwenilocation2.jpeg
index e394d73..4ee722e 100644
Binary files a/content/location/mbweni/img/mbwenilocation2.jpeg and b/content/location/mbweni/img/mbwenilocation2.jpeg differ
diff --git a/content/location/mbweni/img/mbwenilocation3.jpeg b/content/location/mbweni/img/mbwenilocation3.jpeg
index 74443a5..de4ebba 100644
Binary files a/content/location/mbweni/img/mbwenilocation3.jpeg and b/content/location/mbweni/img/mbwenilocation3.jpeg differ
diff --git a/content/location/mbweni/img/mbweniprotection1.jpeg b/content/location/mbweni/img/mbweniprotection1.jpeg
index 425a7c0..6c35a29 100644
Binary files a/content/location/mbweni/img/mbweniprotection1.jpeg and b/content/location/mbweni/img/mbweniprotection1.jpeg differ
diff --git a/content/location/mbweni/img/mbweniprotection2.jpeg b/content/location/mbweni/img/mbweniprotection2.jpeg
index e394d73..4ee722e 100644
Binary files a/content/location/mbweni/img/mbweniprotection2.jpeg and b/content/location/mbweni/img/mbweniprotection2.jpeg differ
diff --git a/content/location/mbweni/img/mbweniprotection3.jpeg b/content/location/mbweni/img/mbweniprotection3.jpeg
index 74443a5..de4ebba 100644
Binary files a/content/location/mbweni/img/mbweniprotection3.jpeg and b/content/location/mbweni/img/mbweniprotection3.jpeg differ
diff --git a/content/location/mbweni/index.md b/content/location/mbweni/index.md
index 6990a54..ffbf302 100644
--- a/content/location/mbweni/index.md
+++ b/content/location/mbweni/index.md
@@ -8,7 +8,7 @@ weight: 3
---
-{% row(style="center narrow" margin="header" bgPath="img/jungle1.png" bgStyle="full") %}
+{% row(style="center narrow" margin="header" bgPath="img/mbweni_header.png" bgStyle="full") %}
## Jungle Paradise
diff --git a/content/protection/img/mbweniprotection1.jpeg b/content/protection/img/mbweniprotection1.jpeg
index 425a7c0..6c35a29 100644
Binary files a/content/protection/img/mbweniprotection1.jpeg and b/content/protection/img/mbweniprotection1.jpeg differ
diff --git a/content/protection/img/mbweniprotection2.jpeg b/content/protection/img/mbweniprotection2.jpeg
index e394d73..4ee722e 100644
Binary files a/content/protection/img/mbweniprotection2.jpeg and b/content/protection/img/mbweniprotection2.jpeg differ
diff --git a/content/protection/img/mbweniprotection3.jpeg b/content/protection/img/mbweniprotection3.jpeg
index 74443a5..de4ebba 100644
Binary files a/content/protection/img/mbweniprotection3.jpeg and b/content/protection/img/mbweniprotection3.jpeg differ
diff --git a/content/protection/img/mbweniprotection4.jpg b/content/protection/img/mbweniprotection4.jpg
index 231feb8..426c192 100644
Binary files a/content/protection/img/mbweniprotection4.jpg and b/content/protection/img/mbweniprotection4.jpg differ
diff --git a/content/protection/img/mbweniprotection5.jpg b/content/protection/img/mbweniprotection5.jpg
index f84bd2f..732a891 100644
Binary files a/content/protection/img/mbweniprotection5.jpg and b/content/protection/img/mbweniprotection5.jpg differ
diff --git a/content/protection/img/mbweniruins2.jpeg b/content/protection/img/mbweniruins2.jpeg
index 94ed109..65b9a0a 100644
Binary files a/content/protection/img/mbweniruins2.jpeg and b/content/protection/img/mbweniruins2.jpeg differ
diff --git a/content/protection/img/protection_header.jpg b/content/protection/img/protection_header.jpg
new file mode 100644
index 0000000..bab85e2
Binary files /dev/null and b/content/protection/img/protection_header.jpg differ
diff --git a/content/protection/img/protection_header.png b/content/protection/img/protection_header.png
new file mode 100644
index 0000000..86347c9
Binary files /dev/null and b/content/protection/img/protection_header.png differ
diff --git a/content/protection/index.md b/content/protection/index.md
index a4de7b7..5d5c403 100644
--- a/content/protection/index.md
+++ b/content/protection/index.md
@@ -9,7 +9,7 @@ weight: 4
-{% row(style="center narrow" margin="header" bgPath="img/protectheader.jpg" bgStyle="full") %}
+{% row(style="center narrow" margin="header" bgPath="img/protection_header.png" bgStyle="full") %}
## Programs to Protect
diff --git a/static/images/footer.png b/static/images/footer.png
index 227bb8e..0231e61 100644
Binary files a/static/images/footer.png and b/static/images/footer.png differ
diff --git a/static/images/logo_placeholder_eden.png b/static/images/logo_placeholder_eden.png
deleted file mode 100644
index 8c0e340..0000000
Binary files a/static/images/logo_placeholder_eden.png and /dev/null differ
diff --git a/static/images/logo_placeholder_eden_2.png b/static/images/logo_placeholder_eden_2.png
deleted file mode 100644
index 20e699e..0000000
Binary files a/static/images/logo_placeholder_eden_2.png and /dev/null differ
diff --git a/static/images/logo_placeholder_eden_3.png b/static/images/logo_placeholder_eden_3.png
deleted file mode 100644
index 0338344..0000000
Binary files a/static/images/logo_placeholder_eden_3.png and /dev/null differ