@ -0,0 +1 @@ | |||
name: name, email: mymail@me.com, phone: +333333333, subject: Hello, message: hi,[name: Johhny, email: johnny@mail.com, phone: , subject: , message: hi],[name: hello, email: must@mail.com, phone: , subject: , message: Hi],[name: hello, email: must@mail.com, phone: , subject: , message: Hi],[name: hi, email: mymail@me.com, phone: , subject: , message: peace],[name: Johhny, email: johnny@mail.com, phone: , subject: , message: hey again], |
@ -0,0 +1,39 @@ | |||
use rocket::form::Form; | |||
use rocket::response::Redirect; | |||
use std::fs::OpenOptions; | |||
use std::io::Write; | |||
#[derive(FromForm, Debug)] | |||
pub struct UserInput<'r> { | |||
name: &'r str, | |||
email: &'r str, | |||
phone: &'r str, | |||
subject: &'r str, | |||
message: &'r str, | |||
} | |||
#[post("/submit", data = "<user_input>")] | |||
pub fn submit(user_input: Form<UserInput<'_>>) -> Redirect { | |||
let data = format!("[name: {}, email: {}, phone: {}, subject: {}, message: {}],", | |||
user_input.name, | |||
user_input.email, | |||
user_input.phone, | |||
user_input.subject, | |||
user_input.message); | |||
let mut f = OpenOptions::new() | |||
.append(true) | |||
.create(true) | |||
.open("formdata.txt") | |||
.expect("Couldn't open"); | |||
f.write_all(&data.as_bytes()).expect("Failed to write"); | |||
let redirect = Redirect::to(uri!("/contact/thanks")); | |||
redirect | |||
} |
@ -0,0 +1,33 @@ | |||
{%extends "base"%} | |||
{%block title %} Cannabinieri | {{ title[6] }} {%endblock title %} | |||
{%block head%} | |||
{{super()}} | |||
<link rel="stylesheet" type="text/css" href="../css/pages.css" /> | |||
{%endblock head%} | |||
{%block content%} | |||
<div class ="container"> | |||
<div class ="content_container"> | |||
<img src="../img/Logo.svg"> | |||
<h1 id ="small_centered">Cannabinieri</h1> | |||
<p>Unsere Mission ist konsequent biologisches CBD anzubauen und mit Hilfe von Technik mehr über sie zu.<br> | |||
All unsere Produkte sind Experimente die Auswirkungen von Wechselwirkungen in unserem Ökosystem erforschen. | |||
Unser Dünger sind unsere Partnerpflanzen und Insekten sind unsere Helfer gegen Schädlinge. | |||
<br>Entdecke unser erstes Experiment !</p> | |||
</div> | |||
<div class ="content_container"> | |||
<img src="../img/spider_web.JPG"> | |||
<h1>Vision</h1> | |||
<p>Unsere CBD Pflanzen verarbeiten wir selbst zu Vollspektrum Ölen. Jedes ein Unikat, wie die Experimente. | |||
Unsere ersten Öle gewinnen wir durch Extraktion mit Trinkalkohol und natürlich ohne artifizielle Zusätze. | |||
Wir experimentieren mit verschiedenen Trägerölen und Konzentration. | |||
<br>Entdecke mehr über unsere Öle !<br> | |||
</p> | |||
</div> | |||
<div class ="content_container"> | |||
<img src="../img/hero.svg"> | |||
<h1>Modell</h1> | |||
<p>Unsere Ziel ist es unsere Experimente auch als Blüten anzubieten. Der Verkauf und die Einfuhr von Blüten ist für uns und viele andere Firmen, die ins CBD Business einsteigen wollen ohne rechtliche Absicherung zu riskant. | |||
Hier findest du mehr zu unseren Blüten, aus denen wir auch unsere Öle herstellen. </p> | |||
</div> | |||
</div> | |||
{%endblock content%} |
@ -1,80 +0,0 @@ | |||
<div class="page-wrapper"> | |||
<div class="info"> | |||
<h1>Join</h1> | |||
<p>Join our project .<br><br> | |||
<span>Let's get in touch!</span></p> | |||
<div class="image"> | |||
<img type=" image/webp" src="../img/sample-coding-together.jpg"> | |||
</div> | |||
</div> | |||
<div class="join-container"> | |||
<div class="strip"> | |||
<div class="about"> | |||
<h3>Want to join us ?</h3> | |||
<p>Feel free to get in touch, we are looking forward to meet you and your ideas.<br> | |||
SpiderPi still is in his starting shoes and we can use your help to get him up and running.<br><br> | |||
Are you willing to contribute, learn and create the future of gardening for everyone ?<br><br> | |||
<span>We love to hear from you!</span><br> | |||
#a dummy text</p> | |||
<div class="image"> | |||
<img type=" image/webp" src="../img/sample-spiderwoman.png"> | |||
</div> | |||
</div> | |||
</div> | |||
<div class="strip2"> | |||
<div class="contact-container"> | |||
<div class="form"> | |||
<div class="contact-info"> | |||
<div class="adress-info"> | |||
<h3>Write Us</h3> | |||
<h5>Adress</h5> | |||
<p>Cannabinieri Office <br> | |||
Some Adress <br><br> | |||
<h5>Mail</h5> | |||
<p> | |||
cannabinieri@info.de | |||
</p> | |||
</div> | |||
<div class="phone-info"> | |||
<h3>Call Us</h3> | |||
<p>Some Number<br> | |||
</p> | |||
</div> | |||
<div class="social-info"> | |||
<h3>Follow Us</h3> | |||
<figure> | |||
<h5 id="pixelfed">Pixelfed</h5> | |||
<a id= "pixelfed-adress" href="#">Cannabinieri_Official</a> | |||
<h5 id="peertube">Youtube</h5> | |||
<a id="peertube-adress" href="#">Cannabinieri_Channel</a> | |||
</figure> | |||
</div> | |||
</div> | |||
<div class="contact-form"> | |||
<form> | |||
<h3 class="title"> Get in touch</h3> | |||
<div class="input-container"> | |||
<input type="text" name="name" class="input" placeholder="Name" id="username"/> | |||
</div> | |||
<div class="input-container"> | |||
<input type="email" name="email" class="input" placeholder="EMail"required id="mail"/> | |||
</div> | |||
<div class="input-container"> | |||
<input type="tel" name="phone" class="input" placeholder="Phone Number(optional)" id="phone"/> | |||
</div> | |||
<div class="input-container"> | |||
<input type="subject" name="subject" class="input" placeholder="Subject" id="subject" /> | |||
</div> | |||
<div class="input-container textarea"> | |||
<textarea name="message" class="input" placeholder="Message" id="message" ></textarea> | |||
</div> | |||
<button class="btn" id="sub_btn">Submit</button> | |||
</form> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
</div> |
@ -1,68 +0,0 @@ | |||
<div class="page-wrapper"> | |||
<div class="info"> | |||
<h1>Meet Us</h1> | |||
<p>Do you have questions, comments, thoughts about us and our experiments ?<br><br> | |||
<span>Drop us a line or two, we love to hear from you !</span></p> | |||
<img type=" image/webp" src="../img/cheers.svg"/> | |||
</div> | |||
<div class="contact-container"> | |||
<div class="form"> | |||
<div class="contact-info"> | |||
<div class="adress-info"> | |||
<h3>Write Us</h3> | |||
<h5>Adress</h5> | |||
<p>Cannabinieri Office <br> | |||
Some Adress <br><br> | |||
<h5>Mail</h5> | |||
<p> | |||
cannabinieri@info.de | |||
</p> | |||
</div> | |||
<div class="phone-info"> | |||
<h3>Call Us</h3> | |||
<p>Some Number<br> | |||
</p> | |||
</div> | |||
<div class="social-info"> | |||
<h3>Follow Us</h3> | |||
<figure> | |||
<h5 id="pixelfed">Pixelfed</h5> | |||
<a id="pixelfed-adress" href="#">Cannabinieri_Official</a> | |||
<h5 id="peertube">Youtube</h5> | |||
<a id ="peertube-adress"href="#">Cannabinieri_Channel</a> | |||
</p> | |||
</figure> | |||
</div> | |||
</div> | |||
<div class="contact-form"> | |||
<form> | |||
<h3 class="title">Meet Us</h3> | |||
<div class="input-container"> | |||
<input type="text" name="name" class="input" placeholder="Name" id="username"/> | |||
</div> | |||
<div class="input-container"> | |||
<input type="email" name="email" class="input" placeholder="EMail"required id="mail"/> | |||
</div> | |||
<div class="input-container"> | |||
<input type="tel" name="phone" class="input" placeholder="Phone Number(optional)" id="phone"/> | |||
</div> | |||
<div class="input-container"> | |||
<input type="subject" name="subject" class="input" placeholder="Subject" id="subject" /> | |||
</div> | |||
<div class="input-container textarea"> | |||
<textarea name="message" class="input" placeholder="Message" id="message" ></textarea> | |||
</div> | |||
<button class="btn" id="sub_btn">Submit</button> | |||
</form> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
<!--Handle Form Data with Rocket ! | |||
<script defer src="../js/form.js"></script> | |||
<script defer type="text/javascript" src= "../js/axios.min.js"></script> | |||
--> | |||
@ -1,47 +0,0 @@ | |||
<div class="page-wrapper"> | |||
<div class="info"> | |||
<h1>Oils</h1> | |||
<p>Our full-spectrum CBD oils<br><br> | |||
<span>Discover our first Experiment!</span></p> | |||
<div class="image"> | |||
<img type=" image/webp" src="../../img/sample-sauvage.svg"/> | |||
</div> | |||
</div> | |||
<div class="oil-container"> | |||
<div class="strip"> | |||
<div class="about"> | |||
<h3><span>Sauvage</span>, the wild one</h3> | |||
<p>Sauvage is french for wild.<br> | |||
Our first Experiment is a full-spectrum CBD oil made out of a local strain, grown outdoors under normal consitions and obtained through ethanol extraction .<br> | |||
Since our project is about exploring how environmental factors and partnerplants influence a products taste and effect, | |||
we found that a product grown organically and manually outdoors by one of our partners would be the perfect base to our journey of exploration.<br><br> | |||
<span>Find out all about her and order a sample!</span><br> | |||
#a dummy text</p> | |||
<div class="image"> | |||
<img type=" image/webp" src="../../img/sample-oils-background.jpg"/> | |||
</div> | |||
</div> | |||
</div> | |||
<div class="strip2"> | |||
<div class="products"> | |||
<h3>All CBD Oils</h3> | |||
<div class="product"> | |||
<div class="image"> | |||
<img type=" image/webp" src="../../img/sample-sauvage.svg" /> | |||
</div> | |||
<h5>Sauvage</h5> | |||
<p>A Full Spectrum CBD oil from organic grown italian hemp.<br> | |||
The carrier oil is 100% organic hemp oil, ethanol extraction.<br> | |||
% CBD, % THC, flavour, effect.<br> | |||
Natural conditions, nothing done to influence it.<br><br> | |||
<span>Available as a limited sample.</span> | |||
</p> | |||
<div class="click"> | |||
<button><a href=experiments/sauvage.html>About</a></button> | |||
<button id="shop"><a href="#">Try</a></button> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
</div> |
@ -1,80 +0,0 @@ | |||
<div class="page-wrapper"> | |||
<div class="info"> | |||
<h1>Partners</h1> | |||
<p>Who they are and what they do <br> | |||
<span> Find out !</span></p> | |||
<div class="image"> | |||
<img type=" image/webp" src="../img/sample-partners.jpg"/> | |||
</div> | |||
</div> | |||
<div class="post-container"> | |||
<div class="strip"> | |||
<div class="about"> | |||
<h3>The wild ones</h3> | |||
<p>Our partner Tommaso gave us the opportunity to bring out our first experiment Sauvage.<br> | |||
He grows organic cannabis outdoors in X for X years because X.<br><br> | |||
This year we arrived in Italy in June, we didn't believe that we'd be able to bring out a product within that first year, Thommaso made it possible.<br><br> | |||
We helped him with the harvest and that was when we decided that his plants will serve our first experiment bacause X.<br> | |||
From Thommaso we can learn a lot about the region we'll be working in, about common disseases and local procedures.<br><br> | |||
<span>Find out more below !</span> | |||
<br> | |||
#and it goes sthn' like that | |||
</p> | |||
<div class="image"> | |||
<img type=" image/webp" src="../img/sample-tom.jpg"/> | |||
</div> | |||
</div> | |||
</div> | |||
<div class="strip2"> | |||
<div class="products"> | |||
<h3>All Partners</h3> | |||
<div class="partner"> | |||
<div class="image"> | |||
<img type=" image/webp" src="../img/sample-farm.jpg"/> | |||
</div> | |||
<h5>Tommaso Inc</h5> | |||
<p><span>Organic CBD Farm</span> | |||
<br><br> | |||
His company goal.<br> | |||
Why we work together /how we profit from each other.<br> | |||
#a dummy text #button leads to partners website/social-media etc<br> | |||
</p> | |||
<div class="click"> | |||
<button><a href="#">More</a></button> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
<div class="strip2"> | |||
<div class="products"> | |||
<h3>Links</h3> | |||
<div class="social"> | |||
<div class="tommaso"> | |||
<h5 class="name">Tommaso</h5> | |||
<div class="instagram"> | |||
<button id="insta"><a href="#"><img id="gram" type=" image/webp" src="../img/instagram-black.png"></a></button> | |||
<h5 id="account">@Tommaso_Official</h5> | |||
</div> | |||
</div> | |||
<div class="techdude"> | |||
<h5 class="name">Tech Dude</h5> | |||
<div class="instagram"> | |||
<button id="insta"><a href="#"><img id="gram" type=" image/webp" src="../img/instagram-black.png"></a></button> | |||
<h5 id="account">@TechDude_Official</h5> | |||
</div> | |||
<div class="blog"> | |||
<a href="#">TechDude.com</a> | |||
</div> | |||
</div> | |||
<div class="cbdStore"> | |||
<h5 class="name" id="name2">Organic CBD Shop</h5> | |||
<div class="blog"> | |||
<a href="#">OnlineStore.com</a> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
@ -1,77 +0,0 @@ | |||
<div class="page-wrapper"> | |||
<section class="title"> | |||
<div id="heading"> | |||
<h1>Perma</h1> | |||
<h1 id="two">Culture</h1> | |||
</div> | |||
<p class="short">We take part in a culture utilizing the patterns of our ecosystem.</p> | |||
<div class="image"> | |||
<img type="image/webp" src="img/sample-net.jpg"> | |||
</div> | |||
</section> | |||
<section id="about"> | |||
<p> Permaculture is the way to design in synergy with nature.<br> | |||
In order to use our planet's ressources in a sustainable way, we need to understand the design of nature. <br> | |||
In order to find new organic solutions we created the PermApp, a way for everybody to store and explore environmental connections & utilize them for sustainable problem-solving. | |||
</p> | |||
</section> | |||
<section id="links"> | |||
<div id="app-link"> | |||
<div class="image"> | |||
<a href="permapp.html"> | |||
<img id="icon" type="image/webp" src="img/permapp.svg"> <!--here could be an actual app icon or even an interactive canvas--> | |||
<img id="icon-desktop" > | |||
</a> | |||
</div> | |||
<div class="description"> | |||
<h3 class="heading">Perm<span>App</span></h3> | |||
<p class="text">Try our PermApp <br> | |||
Still and always in developement.<br>Explore and edit connections between the entities of our ecosystem !<br> | |||
Create and use data to start your own Permaculture project.</p> | |||
<ul class="additional"> | |||
<li> build our ecosystem</li> | |||
<li> explore relations</li> | |||
<li> available for Web</li> | |||
<li> Mobile App coming soon #dummy</li> | |||
</ul> | |||
</div> | |||
<div class="page-button"> | |||
<a href="permapp.html">Explore</a> | |||
</div> | |||
</div> | |||
<div id="lab-link"> | |||
<div class="image"> | |||
<a href="greenlab.html"> | |||
<img id="organic" src="img/sample-fertilizer.svg"> | |||
</a> | |||
</div> | |||
<div class="description"> | |||
<h3 class="heading">Green<span>Lab</span></h3> | |||
<p class="text">Learn about our 100% organic recipes for fertilizers and pesticides.</p> | |||
<p class="text" class="additional">We only use plants out of our own garden for our products.<br><br> | |||
Learn about how many plants cure and treat each other and how you can make use of their powers. | |||
</div> | |||
<div class="page-button"> | |||
<a href="greenlab.html">Learn</a> | |||
</div> | |||
</div> | |||
<div id="about-link"> | |||
<div class="image"> | |||
<a href="whatsthat.html"> | |||
<h1 id="question">?</h1> | |||
</a> | |||
</div> | |||
<div class="description"> | |||
<h3 class="heading">What's that <span>?</span></h3> | |||
<p>Read about the design principles of <span>Permaculture</span> and how people animals and plants benefit. | |||
<br>Permaculture helps us understand our planet and utilize its ressources to their full extend without exploiting them. </p> | |||
</div> | |||
<div class="page-button"> | |||
<a href="whatsthat.html">Read</a> | |||
</div> | |||
</div> | |||
</section> | |||
</div> |
@ -1,46 +0,0 @@ | |||
<div class="page-wrapper"> | |||
<div class="info"> | |||
<h1>Perm<span>App</span></h1> | |||
<p>A map of our ecosystem.<br><br> | |||
<span>Try it now!</span></p> | |||
<div class="image"> | |||
<img type=" image/webp" src="../img/sample-permapp-screen.png"/> | |||
</div> | |||
</div> | |||
<div class="app-container"> | |||
<div class="strip"> | |||
<div class="about"> | |||
<h3> Let's create a database of our ecosystem!</h3> | |||
<p>Our PerMapp is an app that stores all the connections in our ecosystem.<br> | |||
Everything around us is connected, every plant affects all other plants and animals and in the end us people.<br> | |||
In order to keep utilizing our planets ressources, we need to understand the complex system that definines life and decay . | |||
Add relations you found out about, keep experimenting with the ones that are already known, so in the end we got the data neccessary for a sustainable and automated future of farming.<br><br> | |||
<span>Let's Create!</span><br> | |||
#a dummy text</p> | |||
<div class="image"> | |||
<img type=" image/webp" src="../img/sample-app.jpg"/> | |||
</div> | |||
</div> | |||
</div> | |||
<div class="strip2"> | |||
<div class="products"> | |||
<h3>Try the App</h3> | |||
<div class="product"> | |||
<div class="image"> | |||
<img type=" image/webp" src="../img/permapp_black.svg" /> | |||
</div> | |||
<h5>Perm<span>App</span></h5> | |||
<p>Add and explore the relations of our ecosystem !<br> | |||
The Webapp has already has most of its core functionalities.<br> | |||
The mobile app is currently in developement.<br> | |||
#a dummy text<br> | |||
</p> | |||
<div class="click"> | |||
<button><a href="#">Web</a></button> | |||
<button id="app"><a href="#">App</a></button> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
</div> |
@ -1,60 +0,0 @@ | |||
<div class="page-wrapper"> | |||
<section class="title"> | |||
<div id="heading"> | |||
<h1>About a</h1> | |||
<h1 id="two">Spider</h1> | |||
</div> | |||
<article> | |||
<p class="short">Imagine <br class="mobile">a spider<br class="mobile"> doing your gardening.</p> | |||
<i class="fa fa-angle-down"></i> | |||
</article> | |||
<div class="image"> | |||
<img type="image/webp" src="img/spider.svg" alt="spider"> | |||
</div> | |||
</section> | |||
<section id="about"> | |||
<p> <span>Spider Pi </span>is the garden hexapod we are working on.<br> | |||
He is aimed to be a helper and walking database that recognizes disseases and pests in plants and knows how to fight them.<br> | |||
He will help us understand how environmental conditions and relations between plants are connected to the spread of pests and disseases. <br> | |||
In order for him to understand what we don't there is a lot of work to do and we can use your help. | |||
</p> | |||
</section> | |||
<section id="links"> | |||
<div id="pi-link"> | |||
<div class="image"> | |||
<a href="spiderpi.html"> | |||
<img type="image/webp" src="img/sample-spiderpi.svg"> | |||
</a> | |||
</div> | |||
<div class="description"> | |||
<h3 class="heading">Spider <span>Pi</span></h3> | |||
<p class="text">Learn about our project Spider Pi | |||
and be part of the spider's journey to become a garden helper.<br> | |||
Follow Spider Pi's progress and watch us training him step by step.<br> | |||
Be part of our project from beginning to end and participate in if you like.</p> | |||
</div> | |||
<div class="page-button"> | |||
<a href="spiderpi.html">Learn</a> | |||
</div> | |||
</div> | |||
<div id="join-link"> | |||
<div class="image"> | |||
<a href="greenlab.html"> | |||
<h1 id="plus">&</h1> | |||
</a> | |||
</div> | |||
<div class="description"> | |||
<h3 class="heading">Join</span></h3> | |||
<p class="text">Become part of us.<br> | |||
We can use your help to build and develope our garden spider !<br><br> | |||
Let's create together. | |||
</p> | |||
</div> | |||
<div class="page-button"> | |||
<a href="join.html">Join</a> | |||
</div> | |||
</div> | |||
</section> | |||
</div> |
@ -1,48 +0,0 @@ | |||
<div class="page-wrapper"> | |||
<div class="info"> | |||
<h1><span>Spider</span>Pi</h1> | |||
<p>Our garden hexapod.<br><br> | |||
<span>Learn about SpiderPi!</span></p> | |||
<div class="image"> | |||
<img type=" image/webp" src="../img/sample-spiderpi.svg"> | |||
</div> | |||
</div> | |||
<div class="spider-container"> | |||
<div class="strip"> | |||
<div class="about"> | |||
<h3>About a Spider</h3> | |||
<p>SpiderPi is our garden hexapod, he is aimed to be a garden helper and a walking database of our ecosystem.<br> | |||
Through object detection he will recognize what is happening around him and check a plant for pests and disseases and then execute measures of biodynamic pest- and dissease management.<br><br> | |||
Currently SpiderPi is learning to walk on uneven ground and recognize his surroundings in order to operate within them.<br><br> | |||
<span>Be part of the journey !</span><br> | |||
#a dummy text</p> | |||
<div class="image"> | |||
<video type="video/mp4" src="../img/sample-video.mp4"></video> | |||
<p>video</p> | |||
</div> | |||
</div> | |||
</div> | |||
<div class="strip2"> | |||
<div class="products"> | |||
<h3>Time-Line</h3> | |||
<div class="product"> | |||
<div class="image"> | |||
<img type=" image/webp" src="../img/sample-camera.jpg"/> | |||
</div> | |||
<h5>Eyes</h5> | |||
<p>Our first challenge is to let SpiderPi detect his surroundings and navigate through them.<br><br> | |||
We replaced his built in camera with a 360 and wrote an object detection program that enables him to navigate through his surroundings and respond to obstacles.<br> | |||
We used the software X, camera X, sensors X, made X changes on the Spider.<br><br> | |||
<span>Stay in touch !</span> | |||
#a dummy text<br> | |||
</p> | |||
<div class="click"> | |||
<button><a href="#">Blog</a></button> | |||
<button id="insta"><a href="#"><img id="gram" type=" image/webp" src="../img/pixelfed.svg"></a></button> | |||
<button id="you"><a href="#"><img id="tube" type=" image/webp" src="../img/peertube.svg"></a></button> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
</div> |
@ -1,8 +0,0 @@ | |||
<!--Add dynamic language handling here--> | |||
<nav class="top-bar"> | |||
<div class="languages"> | |||
<a href="../languages/deutsch.html">Deutsch |</a> | |||
<a href="static/languages/italiano.html">Italiano |</a> | |||
<a href="static/languages/francais.html">Francais </a> | |||
</div> | |||
</nav> |
@ -1,59 +0,0 @@ | |||
<div class="page-wrapper"> | |||
<div class="info"> | |||
<h1>What's<br>that<span>?</span></h1> | |||
<p>What <span> Permaculture </span> is <br class="mobile">and why we care.<br><br> | |||
<span class="mobile">Find out!</span></p> | |||
<div class="image"> | |||
<img type=" image/webp" src="../img/sample-wild.jpg"/> | |||
</div> | |||
</div> | |||
<div class="culture-container"> | |||
<div class="strip"> | |||
<div class="about"> | |||
<h3> The design of a sustainable ecosystem.</h3> | |||
<p id="first"> Permaculture is defined through<span id="twelve"><br>12 principles</span>.</p><br> | |||
<ul> | |||
<li><span># </span>Observe and interact</li> | |||
<li><span># </span>Catch and store energy</li> | |||
<li><span># </span>Obtain a yield</li> | |||
<li><span># </span>Apply self-regulation and accept feedback</li> | |||
<li><span># </span>Use and value renewable services and ressources</li> | |||
<li><span># </span>Produce no waste</li> | |||
<li><span># </span>Design from patterns to details</li> | |||
<li><span># </span>Integrate rather than segregate</li> | |||
<li><span># </span>Use small and slow solutions</li> | |||
<li><span># </span>Use and value diversity</li> | |||
<li><span># </span>Use edges and value the marginal</li> | |||
<li><span># </span>Creatively use and respond to change</li> | |||
</ul> | |||
<p id="second"> | |||
All those principles are about a optimized use of our limited ressources while creating a sustaining value - a self-sufficient system that takes care of itself. <br> | |||
In order to build such a system a lot of information is required and this information is gained with tech, <br> to ultimately reach the goal of an actual automatic garden that takes care of itself by the rules of nature.<br> This can be a longer text. It should include all info we want to share about no waste, renewable energy, fish, herbs and our experiments.<br> When we got the demeter seal we can also mention it here or that we are working on obtaining it now.<br> | |||
This text is about what permaculture is, why it is useful, why and how we use it and how the definition can include robots, maybe no robots here and just what people need to know about us not using plastic, creating a biodynamic farm, working on renewable energy solutions and utilizing partnerplants for our experiments.<br> | |||
#smthn' like that</p> | |||
<div class="image"> | |||
<img type=" image/webp" src="../img/plants-in-bags-owned.jpeg"/> | |||
</div> | |||
</div> | |||
</div> | |||
<div class="strip2"> | |||
<div class="products"> | |||
<h3>Blog</h3> | |||
<div class="product"> | |||
<div class="image"> | |||
<img type=" image/webp" src="../img/sample-post.jpg" /> | |||
</div> | |||
<h5>Related post 1</h5> | |||
<p>Short description.<br> | |||
Might be about a specific relation or on some study or one of our experiments.<br> | |||
#a dummy text<br> | |||
</p> | |||
<div class="click"> | |||
<button><a href="#">Read</a></button> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
</div> |
@ -1,102 +0,0 @@ | |||
<div class="page-wrapper"> | |||
<div class="info"> | |||
<h1>About<br><span>Us</span></h1> | |||
<p>We grow further.<br><br> | |||
<div class="image"> | |||
<img type=" image/webp" src="../img/sample-about.svg" /> | |||
</div> | |||
</div> | |||
<div class="about-container"> | |||
<div class="strip"> | |||
<div class="philo"> | |||
<h3><span>We grow our future</h3> | |||
<p>We are working actively on creating a future that is reigned by knowledge about our environment .<br> | |||
It is a future that enables us to make use of the full potential of our planet and grow our crops by the principles of nature and with the help of modern technology.<br> | |||
We want our projects and products to be seen as packages of knowledge - as an ability to understand how complex and exiting the system around us is.<br> | |||
Our goal is to understand our ecosystem and the influence of every relation on a product. We want you to know all we know.<br><br> | |||
Collective knowledge, heath and excitement about our environment empowers us to grow further.<br><br> | |||
#a dummy text</p> | |||
<div class="image"> | |||
<img id="closeup" type=" image/webp" src="../img/sample-close.jpg"/> | |||
</div> | |||
</div> | |||
</div> | |||
<div class="strip2"> | |||
<div class="philo"> | |||
<h3 id="heading2">Working with Nature</h3> | |||
<p>We want to utilize all of natures powers and explore organic and biodynamic solutions for pest and dissease management. By that we aim to obtain the highest quality and quantity of yields by only playing with natures entities.<br> | |||
We are currently aspiring to obtain the Demeteter label which proves that all principlels of biodynamic agriculture are approved .<br> | |||
We want to build a self-sufficient system where each plant and each environmental factor profit from each other. | |||
All products we use on our plants are products made out of our plants.<br><br> | |||
#a dummy text</p> | |||
<div class="image"> | |||
<img id="partners" type=" image/webp" src="../img/sample-biodyn.svg"/> | |||
</div> | |||
</div> | |||
</div> | |||
<div class="strip2"> | |||
<div class="philo"> | |||
<h3>Exploring the full potential of CBD</h3> | |||
<p>The Cannabis plant consisists of more than 120 different cannabinoids which all affect our body and psyche in unique ways.<br> | |||
All our experiments are tailored to create exquisit compositions of different tastes and effects, just by manipulating environmental factors and the use of partnerplants.<br> | |||
We evaluate the results through advanced technology lab tests, that precicely determine the quantity of different cannabinoids in our experiments. | |||
By lab testing we also find out more about pests and disseases affecting our plants.Through constant reasearch and the collection of data we find organic solutions for their prevention.<br><br> | |||
We are experimenting with all available extraction methods and our products ship with a lab test.<br> | |||
#a dummy text</p> | |||
<div class="image"> | |||
<img type=" image/webp" src="../img/sample-lab.jpg"/> | |||
</div> | |||
</div> | |||
</div> | |||
<div class="strip2"> | |||
<div class="philo"> | |||
<h3>Automation for the People</h3> | |||
<p>If we talk about automation we mean people automating gardening for themselves, not people being automated.<br> | |||
One of the main engines of this project is to find affordable and comprehensible solutions that enable everyone to have their own organic automated garden everywhere.<br> | |||
We believe that many people utilizing our products, growing different plants under different conditions, enables us, all people, to create a huge net of data about our ecosystem that we can use and share and over which we have total control. | |||
We want everyone to have access to our projects that is why all of them are documented to be imitated and improved.<br><br> | |||
#a dummy text</p> | |||
<div class="image"> | |||
<img id= "helper" type=" image/webp" src="../img/sample-spiderpi-helper.svg"/> | |||
</div> | |||
</div> | |||
</div> | |||
<div class="strip2"> | |||
<div class="philo"> | |||
<h3>Collective Growth</h3> | |||
<p>We choose the business model of a collective for our project.<br> | |||
We did start this business in X 2020, our idea was to start small in order not to have large expenses at the beginning, which enables us to make all busines decisions ourselves.<br> | |||
We want to have total control over what we are doing and make collective decisions without an investor interfering and forcing us to compromise our values. | |||
So our definition of growth is a slow but consitent growth, that lets us step by step realize each of our ideas.<br><br> | |||
We want to share our data and every detail about what we are doing.<br> | |||
We desire to know more, and so do you, so we are taking the first step by deciding to share all we do and doing it all ourselves.<br> | |||
#a dummy text</p> | |||
<div class="image"> | |||
<img type=" image/webp" src="../img/sample-collective.jpg"/> | |||
</div> | |||
</div> | |||
</div> | |||
<div class="strip2"> | |||
<div class="products"> | |||
<h3>Social Media</h3> | |||
<div class="social"> | |||
<h5>Keep in touch !</h5> | |||
<div class="instagram"> | |||
<button id="insta"><a href="#"><img id="gram" type=" image/webp" src="../img/pixelfed.svg"></a></button> | |||
<h5 id="account">@Cannabinieri_Official</h5> | |||
</div> | |||
<div class="youtube"> | |||
<button id="you"><a href="#"><img id="tube" type=" image/webp" src="../img/peertube.svg"></a></button> | |||
<h5 id="account">@Cannabinieri_Official</h5> | |||
</div> | |||
<div class="blog"> | |||
<button id="blog"><a href="#">Blog</a></button> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
</div> |
@ -0,0 +1,41 @@ | |||
.container { | |||
background-color: #05f2a5; | |||
font-family: 'Lato', sans-serif;; | |||
background-size: cover; | |||
background-repeat: no-repeat; | |||
height: calc(100% - 30vh); | |||
min-height: 55vh; | |||
margin: 5vh 5vw; | |||
display: flex; | |||
align-items: center; | |||
justify-content: space-evenly; | |||
flex-direction: column; | |||
} | |||
.container h2 { | |||
color: #fff; | |||
text-align: center; | |||
padding: 0 6vw .5vh 6vw; | |||
font-size: 8.5vw; | |||
line-height: 7.5vh; | |||
letter-spacing: 0.045vw; | |||
} | |||
.container p { | |||
color: #333; | |||
letter-spacing: 0.045vw; | |||
} | |||
.container a { | |||
text-decoration: none; | |||
background-color: #fff; | |||
padding: 2vh 6vw; | |||
color: #3dbd92; | |||
letter-spacing: 0.045vw; | |||
font-weight: 600; | |||
} | |||
.container a:active, .container a:hover { | |||
box-shadow: 0px 0px 10px #333; | |||
color: hsl(160,51%, 39%); | |||
} |