Browse Source

sept26

master
Xsivax 3 years ago
parent
commit
14ed663ddb
74 changed files with 429 additions and 3018 deletions
  1. +30
    -18
      src/build_rocket/get.rs
  2. +1
    -1
      src/build_rocket/templates.rs
  3. +3
    -3
      src/main.rs
  4. +0
    -47
      templates/assets/components/automation-content.html
  5. +0
    -242
      templates/assets/components/blog-content.html
  6. +0
    -73
      templates/assets/components/code-content.html
  7. +0
    -47
      templates/assets/components/diy-content.html
  8. +0
    -47
      templates/assets/components/edibles-content.html
  9. +0
    -112
      templates/assets/components/experiments-content.html
  10. +0
    -43
      templates/assets/components/flower-content.html
  11. +0
    -112
      templates/assets/components/footer.html
  12. +0
    -48
      templates/assets/components/greenlab-content.html
  13. +0
    -71
      templates/assets/components/greentech-content.html
  14. +0
    -46
      templates/assets/components/iot-content.html
  15. +0
    -102
      templates/assets/components/learn-content.html
  16. +0
    -133
      templates/assets/components/main-nav.html
  17. +80
    -0
      templates/assets/css/contact.css
  18. +46
    -3
      templates/assets/css/index.css
  19. +2
    -2
      templates/assets/css/navigation.css
  20. +20
    -2
      templates/assets/css/pages.css
  21. BIN
      templates/assets/img/3d_greenhouse.png
  22. BIN
      templates/assets/img/Canna17.JPG
  23. BIN
      templates/assets/img/assembly.jpg
  24. BIN
      templates/assets/img/boat_construction.jpg
  25. BIN
      templates/assets/img/boat_peace.jpg
  26. BIN
      templates/assets/img/bootA.JPG
  27. BIN
      templates/assets/img/img_greenhouse.JPG
  28. BIN
      templates/assets/img/instagram-black.png
  29. BIN
      templates/assets/img/o_pi.jpg
  30. +0
    -77
      templates/assets/img/peertube.svg
  31. +0
    -107
      templates/assets/img/peertube_white.svg
  32. +0
    -132
      templates/assets/img/permapp.svg
  33. +0
    -132
      templates/assets/img/permapp_black.svg
  34. BIN
      templates/assets/img/pi.JPG
  35. +0
    -123
      templates/assets/img/pixelfed.svg
  36. +0
    -151
      templates/assets/img/pixelfed_white.svg
  37. BIN
      templates/assets/img/replace.png
  38. BIN
      templates/assets/img/solar.JPG
  39. BIN
      templates/assets/img/spider_out.JPG
  40. BIN
      templates/assets/img/spider_outdoors.JPG
  41. +0
    -2
      templates/assets/jquery/jquery-3.5.1.min.js
  42. +0
    -0
      templates/assets/js/contact.js
  43. +0
    -57
      templates/automation.html
  44. +0
    -63
      templates/blog.html
  45. +0
    -56
      templates/code.html
  46. +44
    -0
      templates/contact.html.tera
  47. +33
    -0
      templates/cube.html.tera
  48. +39
    -0
      templates/cyber.html.tera
  49. +0
    -56
      templates/diy.html
  50. +0
    -54
      templates/edibles.html
  51. +0
    -55
      templates/flower.html
  52. +1
    -1
      templates/footer.html.tera
  53. +0
    -54
      templates/greenlab.html
  54. +0
    -54
      templates/greentech.html
  55. +1
    -1
      templates/hemp.html.tera
  56. +6
    -3
      templates/index_de.html.tera
  57. +0
    -11
      templates/index_de_test.html.tera
  58. +0
    -54
      templates/iot.html
  59. +0
    -54
      templates/join.html
  60. +0
    -55
      templates/learn.html
  61. +0
    -57
      templates/meet.html
  62. +42
    -0
      templates/miner.html.tera
  63. +8
    -8
      templates/nav.html.tera
  64. +38
    -0
      templates/offgrid.html.tera
  65. +0
    -54
      templates/oils.html
  66. +0
    -55
      templates/partners.html
  67. +0
    -56
      templates/permaculture.html
  68. +0
    -54
      templates/permapp.html
  69. +0
    -13
      templates/policies.html
  70. +0
    -54
      templates/spider.html
  71. +35
    -0
      templates/spider.html.tera
  72. +0
    -54
      templates/spiderpi.html
  73. +0
    -54
      templates/whatsthat.html
  74. +0
    -55
      templates/whoweare.html

+ 30
- 18
src/build_rocket/get.rs View File

@ -26,25 +26,36 @@ use rocket_dyn_templates::Template;
}
#[get("/spider")]
pub async fn spider() -> Option<NamedFile> {
NamedFile::open("templates/spider.html").await.ok()
pub async fn spider() -> Template {
let context = templates::TplPages::new();
Template::render("spider", &context)
}
#[get("/permapp")]
pub async fn permapp() -> Option<NamedFile> {
NamedFile::open("templates/permapp.html").await.ok()
#[get("/kaoscube")]
pub async fn cube() -> Template {
let context = templates::TplPages::new();
Template::render("cube", &context)
}
#[get("/cyberpreneur")]
pub async fn cyber() -> Option<NamedFile> {
NamedFile::open("templates/greentech.html").await.ok()
pub async fn cyber() -> Template {
let context = templates::TplPages::new();
Template::render("cyber", &context)
}
#[get("/offgrid")]
pub async fn offgrid() -> Option<NamedFile> {
NamedFile::open("templates/learn.html").await.ok()
pub async fn offgrid() -> Template {
let context = templates::TplPages::new();
Template::render("offgrid", &context)
}
#[get("/contact")]
pub async fn meet() -> Template {
let context = templates::TplPages::new();
Template::render("contact", &context)
}
// subpages
#[get("/oil")]
@ -62,9 +73,15 @@ use rocket_dyn_templates::Template;
NamedFile::open("templates/spiderpi.html").await.ok()
}
#[get("/kaoscube")]
pub async fn join() -> Option<NamedFile> {
NamedFile::open("templates/join.html").await.ok()
#[get("/permapp")]
pub async fn permapp() -> Option<NamedFile> {
NamedFile::open("templates/permapp.html").await.ok()
}
#[get("/miner")]
pub async fn miner() -> Template {
let context = templates::TplPages::new();
Template::render("miner", &context)
}
#[get("/wohnmaschine")]
@ -78,11 +95,6 @@ use rocket_dyn_templates::Template;
NamedFile::open("templates/about.html").await.ok()
}
#[get("/contact")]
pub async fn meet() -> Option<NamedFile> {
NamedFile::open("templates/meet.html").await.ok()
}
// code link to gitea
#[get("/privacy")]

+ 1
- 1
src/build_rocket/templates.rs View File

@ -34,7 +34,7 @@ pub struct TplPages {
impl TplPages {
pub fn new() -> TplPages {
TplPages {
title: json!(["Hanf"]),
title: json!(["Hanf", "Spinne", "Kaos Cube", "Cyberpreneur", "Offgrid", "Contact Us"]),
}
}
}

+ 3
- 3
src/main.rs View File

@ -27,14 +27,14 @@ async fn main() -> Result<(), rocket::Error> {
.mount("/",
routes![
get::index_de, get_static_files::fileserver,
get::hemp, get::spider, get::permapp, get::cyber, get::offgrid, get::about, get::meet, get::privacy ])
get::hemp, get::spider, get::cube, get::cyber, get::offgrid, get::about, get::meet, get::privacy ])
.mount("/hemp",
routes! [ get::oil, get::flower])
.mount("/spider",
routes! [ get::spiderpi, get::join ])
routes! [ get::spiderpi, get::permapp ])
.mount("/offgrid",
routes! [ get::wm, ])
routes! [ get::wm, get::miner ])
// Add Tera Templating support
.attach(Template::fairing())

+ 0
- 47
templates/assets/components/automation-content.html View File

@ -1,47 +0,0 @@
<div class="page-wrapper">
<div class="info">
<h1>Automation</h1>
<p>Automatic greenhouses<br class="mobile"> for everyone.<br><br>
</p>
<p id="color">Learn about our projects!</p>
<div class="image">
<!--add an imaage of a greenhouse-automation project-->
</div>
</div>
<div class="auto-container">
<div class="strip">
<div class="about">
<h3>Where we stand and where we'll go.</h3>
<p>Our goal is to build fully automatic greenhouses for everyone.<br>
We want them to be both affordable and comprehensive, we want to enable you to grow your own organic food anywhere.<br><br>
Currently we are at the very beginning of our journey and we are rennovating the greenhouse that will be our first fully automized prototype that also serves as the natural habitat of SpiderPi.<br><br>
<span>Stay in touch</span><br>
#a dummy text</p>
<div class="image">
<img type=" image/webp" src="../img/sample-greenhouse.jpg"/>
</div>
</div>
</div>
<div class="strip2">
<div class="products">
<h3>Our projects</h3>
<div class="product">
<div class="image">
<img type=" image/webp" src="../img/sample-mini-greenhouse.jpg"/>
</div>
<h5>Mini Greenhouses</h5>
<p>These Mini Greenhouses have a built in mechanism that manipulates the day-lenght to your plants needs.<br><br>
The curtains close and the light comes up based on data transmitted by sensors and a program that knows plants exact light needs that can apply them and improve the data.<br>
Dreaming..here could be projects like this one.<br>
Find out how we did it in our <a id= "blog-link" href="../learn/blog">Blog</a>.<br>
#a dummy text<br>
</p>
<div class="click">
<button><a href="#">More</a></button>
<button id="app"><a href="#">DIY</a></button>
</div>
</div>
</div>
</div>
</div>
</div>

+ 0
- 242
templates/assets/components/blog-content.html View File

@ -1,242 +0,0 @@
<div class="page-wrapper">
<div class="info">
<h1>Blog</h1>
<p>CBD.Permaculture.Tech.More.<br><br>
<div class="image">
<picture>
<img type="image/svg+xml" src="../img/sample-blog.svg" />
</picture>
</div>
</div>
<div class="blog-container">
<div class="strip">
<h3>Company</h3>
<div class="grid">
<figure>
<div class="theme" id="post1">
<div class="image">
<picture>
<source type="image/webp">
<img id="closeup" type="image/jpeg" src="../img/sample-oils-background.jpg"/>
</picture>
</div>
<h5>CBD oil Sauvage</h5>
<div class="description">
<p>Our first experiment Sauvage is out !<br>
Read her story from seed to sale.</p>
</div>
<div class="click">
<button class="read">
<a href="#">Read</a>
</button>
</div>
</div>
<div class="theme" id="post2">
<div class="image">
<picture>
<source type="image/webp">
<img id="closeup" type="image/jpeg" src="../img/sample-oils-background.jpg"/>
</picture>
</div>
<h5>Wild Herbs</h5>
<div class="description">
<p>Our first experiment Sauvage is out !<br>
Read her story from seed to sale.</p>
</div>
<div class="click">
<button class="read">
<a href="#">Read</a>
</button>
</div>
</div>
<div class="theme" id="post3">
<div class="image">
<picture>
<source type="image/webp">
<img id="closeup" type="image/jpeg" src="../img/sample-oils-background.jpg"/>
</picture>
</div>
<h5>Wild Herbs</h5>
<div class="description">
<p>Our first experiment Sauvage is out !<br>
Read her story from seed to sale.</p>
</div>
<div class="click">
<button class="read">
<a href="#">Read</a>
</button>
</div>
</div>
</figure>
</div>
</div>
<div class="strip">
<h3>CBD News</h3>
<div class="grid">
<figure>
<div class="theme" id="post1">
<div class="image">
<picture>
<source type="image/webp">
<img id="closeup" type="image/jpeg" src="../img/sample-migraines-art.jpg"/>
</picture>
</div>
<h5 class= "downsize">CBD against migraines</h5>
<div class="description">
<p>CBD helps against migraines!<br>
Which cannabinoid have which effects on the brain</p>
</div>
<div class="click">
<button class="read">
<a href="#">Read</a>
</button>
</div>
</div>
<div class="theme" id="post2">
<div class="image">
<picture>
<source type="image/webp">
<img id="closeup" type="image/jpeg" src="../img/sample-migraines-art.jpg"/>
</picture>
</div>
<h5 class= "downsize">CBD against migraines</h5>
<div class="description">
<p>CBD helps against migraines!<br>
Which cannabinoid have which effects on the brain</p>
</div>
<div class="click">
<button class="read">
<a href="#">Read</a>
</button>
</div>
</div>
<div class="theme" id="post3">
<div class="image">
<picture>
<source type="image/webp">
<img id="closeup" type="image/jpeg" src="../img/sample-migraines-art.jpg"/>
</picture>
</div>
<h5 class= "downsize">CBD against migraines</h5>
<div class="description">
<p>CBD helps against migraines!<br>
Which cannabinoid have which effects on the brain</p>
</div>
<div class="click">
<button class="read">
<a href="#">Read</a>
</button>
</div>
</div>
</figure>
</div>
</div>
<div class="strip">
<h3 id="smaller">Perma<br>& culture News</h3>
<div class="grid">
<figure class ="single">
<div class="theme" id="shorter">
<div class="image">
<picture>
<source type="image/webp">
<img id="closeup" type="image/jpeg" src="../img/sample-aqua.jpg"/>
</picture>
</div>
<h5>Aquaculture</h5>
<div class="description">
<p>Find out how fish and plants can profit from each other.<br>
Here's what we found out.</p>
</div>
<div class="click">
<button class="read">
<a href="#">Read</a>
</button>
</div>
</div>
</figure>
</div>
</div>
<div class="strip">
<h3>Tech News</h3>
<div class="grid">
<figure class= "single">
<div class="theme" id= "tech">
<div class="image">
<picture>
<source type="image/webp">
<img id="closeup" type="image/jpeg" src="../img/sample-led.jpg"/>
</picture>
</div>
<h5>Light Sensors</h5>
<div class="description">
<p>Read about our experiments to find out the perfect lighting conditions for our plants.<br>
How light influences plants and how we manipulate it.</p>
</div>
<div class="click">
<button class="read">
<a href="#">Read</a>
</button>
</div>
</div>
</figure>
</div>
</div>
<div class="strip">
<h3>Tutorials</h3>
<div class="grid">
<figure class="single">
<div class="theme" id= "tutorials">
<div class="image">
<picture>
<source type="image/webp">
<img id="closeup" type="image/jpeg" src="../img/sample-diy.jpg"/>
</picture>
</div>
<h5 id="small">Water Flow Automation</h5>
<div class="description">
<p>Learn how to build a water automation for your plants.<br>
Here's how to do it.</p>
</div>
<div class="click">
<button class="read">
<a href="#">Read</a>
</button>
</div>
</div>
</figure>
</div>
</div>
<div class="strip2">
<div class="products">
<h3>Social Media</h3>
<div class="social">
<h5>Keep in touch !</h5>
<figure>
<picture>
<source type="image/webp">
<img id="post_1" src="../img/sample-post.jpg"/>
</picture>
<picture>
<source type="image/webp">
<img id="post_2" src="../img/sample-post.jpg"/>
</picture>
<picture>
<source type="image/webp">
<img class="desktop" id="post_3" src="../img/sample-post.jpg"/>
</picture>
</figure>
<div class="instagram">
<button id="insta"><a href="#"><img id="gram" type="image/svg+xml" 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/svg+xml" src="../img/peertube.svg"></a></button>
<h5 id="account">@Cannabinieri_Official</h5>
</div>
</div>
</div>
</div>
</div>
</div>

+ 0
- 73
templates/assets/components/code-content.html View File

@ -1,73 +0,0 @@
<div class="page-wrapper">
<div class="info">
<h1>Code</h1>
<p>Get the code.<br><br>
<div class="image">
<img type="image/svg+xml" src="../img/gitea-green.svg" />
</div>
</div>
<div class="code-container">
<div class="strip">
<h3>All code</h3>
<div class="grid">
<figure>
<div class="theme" id="post1">
<div class="image">
<picture>
<source type="image/webp">
<img id="closeup" src="../img/sample-code1.jpg"/>
</picture>
</div>
<h5>Detect obstacles</h5>
<h6>Python</h6>
<div class="description">
<p>Obstacle Detection Program for SpiderPi<br></p>
</div>
<div class="click">
<button class="read">
<a href="#">GET</a>
</button>
</div>
</div>
<div class="theme" id="post2">
<div class="image">
<picture>
<source type="image/webp">
<img id="closeup" src="../img/sample-virtual.jpg"/>
</picture>
</div>
<h5>See in 3D</h5>
<h6>Python</h6>
<div class="description">
<p>3D Rendering Program for SpiderPI<br></p>
</div>
<div class="click">
<button class="read">
<a href="#">GET</a>
</button>
</div>
</div>
<div class="theme" id="post3">
<div class="image">
<picture>
<source type="image/webp">
<img id="closeup" src="../img/sample-waterflow.jpg"/>
</picture>
</div>
<h5 id= "downsize">Waterflow Regulation</h5>
<h6>Python</h6>
<div class="description">
<p>Program to manipulate the waterflow for Raspberry Pi</p>
</div>
<div class="click">
<button class="read">
<a href="#">GET</a>
</button>
</div>
</div>
</figure>
</div>
</div>
</div>
</div>

+ 0
- 47
templates/assets/components/diy-content.html View File

@ -1,47 +0,0 @@
<div class="page-wrapper">
<div class="info">
<h1>DIY</h1>
<p>Automate yourself.<br><br>
<span>Check out our guides!</span></p>
<div class="image">
</div>
</div>
<div class="things-container">
<div class="strip">
<div class="about">
<h3>We want you to automate yourself !</h3>
<p>Currently many tasks that used to be done by people are done by computers.<br>
In agriculture there are many interesting projects going on that will soon replace farmworkers with software-engineers.<br><br>
Automation is an amazing opportunity to get tasks done more efficiently and to collect data in order to get a better understanding on how things work.<br><br>
Even though there are many people loosing their jobs while not being able to find a new job with their skillset that used to be valuable.<br><br>
So we want everyone to get aquainted with automation, in order to keep working and keep contributing to the progress.<br><br>
For that it is important to start small automation projects yourself that are fun, that make you learn and of which you profit.<br><br>
<span>Start your first project now !</span>
<br>
</p>
<div class="image">
<!--add a video of a working iot module-->
</div>
</div>
</div>
<div class="strip2">
<div class="products">
<h3>Projects</h3>
<div class="product">
<div class="image">
<img type=" image/webp"src="../img/sample-project.jpg"/>
</div>
<h5>Light, Light on off</h5>
<p>Learn how to build an automatic lightswitch.<br><br>
Manipulate the light using sensors.<br>
Here could be projects like this one.<br>
#a dummy text<br>
</p>
<div class="click">
<button><a href="#">Start</a></button>
</div>
</div>
</div>
</div>
</div>
</div>

+ 0
- 47
templates/assets/components/edibles-content.html View File

@ -1,47 +0,0 @@
<div class="page-wrapper">
<div class="info">
<h1>Candy</h1>
<p>Learn about our CBD Edibles.<br><br>
<span>Coming Soon!</span></p>
<div class="image">
<img type=" image/webp" src="../img/sample-lemon.png"/>
</div>
</div>
<div class="oil-container">
<div class="strip">
<div class="about">
<h3>Currently we are brewing our gummiberry-juice !</h3>
<p>All around our lab grow a variety of local flavourful crops.<br>
There are lemon trees, orange trees, a variety of herbs such as salvia, thyme and rosemary, there is the sea with its algae and there are flowers all around.<br>
All the ingredients for 100% organic CBD candy are growing wildly around us.
Now our job is to find the perfect recipe to create vegan CBD edibles with the oil we produce and all the flavour that grows around us.<br><br>
<span>Out soon!</span><br>
#a dummy text</p>
<div class="image">
<img type=" image/webp" src="../img/sample-lemontree.jpg"/>
</div>
</div>
</div>
<div class="strip2">
<div class="products">
<h3>All CBD Edibles</h3>
<div class="product">
<div class="image">
<img type=" image/webp" src="../img/sample-product-candy.svg" />
</div>
<h5>Name</h5>
<p>A description about this product.<br>
All its ingredients and what makes it unique.<br>
% CBD, % THC, flavour, effect.<br>
Why people should buy it.<br><br>
</p>
<div class="click">
<button><a href="#">About</a></button>
<button id="shop"><a href="#">Try</a></button>
</div>
</div>
</div>
</div>
</div>
</div>

+ 0
- 112
templates/assets/components/experiments-content.html View File

@ -1,112 +0,0 @@
<div class="page-wrapper">
<section class="title">
<h1>Experiments</h1>
<p class="short">Each of our CBD products helps you and us understand our planet.</p>
<div class="image">
<img id="mobile" type="image/webp" src="img/sample-closeup-oil.png">
<img id="desktop" type="image/webp" src="img/sample-closeup-oil.png">
</div>
</section>
<section id="about">
<p> #oils&soon flower&edibles Our Experiments explore how plants react to changes.<br>
Environmental conditions and the relations between plants define a plants health, growth taste and effect. <br>
With our Experiments strive to understand our planet in order to create an organic, automated indoor garden for everyone, everywhere.
</p>
</section>
<section id="links">
<div id="oils-link">
<div class="image" id="gallery">
<div class="main-img">
<a href="oils.html">
<img id="current" type="image/webp" src="img/sample-sauvage.svg"><!--replace with sauvage-->
</a>
</div>
<div class="imgs">
<img type="image/webp" src="img/sample-sauvage.svg">
<img type="image/webp" src="img/sample-dropper.jpg">
<img type="image/webp" src="img/sample-massage.jpg">
<img type="image/webp" src="img/sample-plant.jpg">
</div>
</div>
<div class="description">
<h3 class="heading">CBD Oils</h3>
<p class="text">
Explore all our full-spectrum CBD oils
All oils are of 100% organic grown italian hemp. <br>The experiments vary in extraction methods, strain selection and carrier oil. Each experiment is distinguished through the selection of environmental conditions and partnerplants.<br>
Explore everything from salvia flavoured - to robot grown CBD.
</p>
<ul>
<li> hemp grown in italy</li>
<li> lab tested</li>
<li> available in strenghts X</li>
<li> all oils contain less than .2% THC</li>
</ul>
</div>
<div class="page-button">
<a href="oils.html">Explore</a>
</div>
</div>
<div id="flower-link">
<div class="image">
<div class="main-img">
<a href="flower.html">
<img id="flower" type="image/webp" src="img/sample-plant-flower.jpg">
</a>
</div>
<div class="flowers">
<img type="image/webp" src="img/sample-flower.svg">
<img type="image/webp" src="img/sample-light.jpg">
<img type="image/webp" src="img/sample-girl.jpg">
<img type="image/webp" src="img/sample-plant-flower.jpg">
</div>
</div>
<div class="description">
<h3>CBD Flower</h3>
<p class="text">
<span>Coming Soon : CBD Flower </span><br>Explore our current & future experiments..<br>
Learn about Flower flavoured with homegrown fruit, sun-flower, b-flower and more.. that are currently experimented on #dummy text.</p>
<ul>
<li> hemp grown in italy</li>
<li> lab tested</li>
<li> all flowers contain less than .2% THC</li>
</ul>
</div>
<div class="page-button">
<a href="flower.html">Learn</a>
</div>
</div>
<div id="edibles-link">
<div class="image">
<div class="main-img">
<a href="edibles.html">
<img id="fruit" type="image/webp" src="img/sample-lemon.png">
</a>
</div>
<div class="fruits">
<img type="image/webp" src="img/sample-jelly.jpg">
<img type="image/webp" src="img/sample-herbs.jpg">
<img type="image/webp" src="img/sample-mate.jpg">
<img type="image/webp" src="img/sample-lemon.png">
</div>
</div>
<div class="description">
<h3>Candy</h3>
<p class="text" class="additional"><span>Coming Soon : CBD Edibles</span><br>Explore future experiments.<br>
Learn about organic CBD gummies,<br> homemade CBD lemonade, CBD cookies and more.#dummy text</p>
<ul>
<li> hemp grown in italy</li>
<li> organic fruit and herbs</li>
<li> all edibles contain less than .2% THC</li>
</ul>
</div>
<div class="page-button">
<a href="edibles.html">Learn</a>
</div>
</div>
</section>
</div>
<script src="global/js/image.js"></script>

+ 0
- 43
templates/assets/components/flower-content.html View File

@ -1,43 +0,0 @@
<div class="page-wrapper">
<div class="info">
<h1>Flowers</h1>
<p>Learn about our CBD Flower.<br>
<span>Coming Soon!</span></p>
<div class="image">
<img type=" image/webp" src="../img/sample-flower-closeup.svg"/>
</div>
</div>
<div class="flower-container">
<div class="strip">
<div class="about">
<h3>Soon we'll bring Flower to the people !</h3>
<p>Currently we are building our imperium.<br>
Our own CBD plants grow yearlong and are all set for our first experiments on them.<br>
We want to know which effects changes to environmental entities have and how the taste and composition of our CBD flowers is influenced by that.<br>
At our lab we organically grow wild herbs and a variety of fruit that will give our flower unique flavors. <br>
Our SpiderPi will soon be collecting information about our plants.<br><br>
<span>Get ready for organic, robot-grown CBD flowers !</span><br>
#a dummy text</p>
<div class="image">
<img type=" image/webp" src="../img/sample-plants.jpg"/>
</div>
</div>
</div>
<div class="strip2">
<div class="products">
<h3>All CBD Flower</h3>
<div class="product">
<div class="image">
<img type=" image/webp" src="../img/sample-product.svg" />
</div>
<h5>Name</h5>
<p>A short description about this experiment,<br> flavor, THC, CBD and what's unique.</p>
<div class="click">
<button>About</button>
<button id="shop">Buy</button>
</div>
</div>
</div>
</div>
</div>
</div>

+ 0
- 112
templates/assets/components/footer.html View File

@ -1,112 +0,0 @@
<footer class="footer" style="font-family: 'Fira Sans', sans-serif;">
<div id="footer-wrapper">
<div id="column1">
<h3><span>Cannabinieri</span>@</h3>
</a>
</div>
<div id="column2">
<h6 onclick="show()"> About Cannabinieri
<span class="show">
<i class="arrow down"></i>
</span>
</h6>
<ul id="information">
<li>
<p>
<a href="meet.html">Contact Us</a>
</p>
</li>
<li>
<p>
<a href="#">FAQ</a>
</p>
</li>
<li>
<p>
<a href="#">Certificate of Analysis</a>
</p>
</li>
</ul>
</div>
<div id="column3">
<h6 onclick="display()">links
<span class="show">
<i class="arrow down2"></i>
</span>
</h6>
<ul id="footer-links">
<li>
<p>
<a href="#">Blog</a>
</p>
</li>
<li>
<p>
<a href="#">Shop</a>
</p>
</li>
<li>
<p>
<a class="code" href="#">Code</a>
</p>
</li>
</ul>
</div>
<div id="column4">
<h6>TO BE SAID</h6>
<p> All our products contain<br class ="desktop">less than 0.2% THC</p>
</div>
<div id="column5">
<h6 class="follow">Follow us</h6>
<div id="social-media">
<!--Change Css classes, ids-->
<ul>
<li class="youtube">
<a href="#">
<picture>
<source srcset="../img/peertube_white.svg" type="image/webp">
<img id="youtube" type="image/webp" src= "img/peertube_white.svg">
</picture>
</a>
</li>
<li>
<a href="#">
<picture>
<source srcset="../img/pixelfed.svg" type="image/webp">
<img id="instagram" type="image/webp" src="img/pixelfed.svg">
</picture>
</a>
</li>
<li>
<a href="#">
<picture>
<source srcset="../img/gitea.svg" type="image/webp">
<img id="gitea" type="image/webp" src="img/gitea.svg">
</picture>
</a>
</li>
</ul>
</div>
</div>
<div id="row2">
<p id ="print">©2021 Cannabinieri</p>
</div>
<!--Replace with dynamic language handling-->
<div id="row3">
<div class="languages" id ="footer-languages">
<a href="../languages/deutsch.html">Deutsch |</a>
<a href="../languages/italiano.html">Italiano |</a>
<a href="../languages/francais.html">Francais </a>
</div>
</div>
</div>
</footer>
</div>

+ 0
- 48
templates/assets/components/greenlab-content.html View File

@ -1,48 +0,0 @@
<div class="page-wrapper">
<div class="info">
<h1><span>Green</span>Lab</h1>
<p>The power of partnerplants.<br><br>
<span>Discover our recipes!</span></p>
<div class="image">
<img type=" image/webp" src="../img/sample-fertilizer.svg"/>
</div>
</div>
<div class="green-container">
<div class="strip">
<div class="about">
<h3> We tune our plants with our plants.</h3>
<p>We do not use any chemicals on our plants because nature trumps them all.<br>
There is no dissease or pest that can not be cured by changes within the environment or by utilizing the force of plants and animals.<br>
In fact each plant is a complex chemical composition of nutrients, proteins and inherits a unique communication with the environment.<br>
Different plants attract different insects and bacteria and leave nutrients in the soil, if we understand each plants potential, we have access to an endless toolbox for the composition of organic ferilizer and - pesticide recipes.<br><br>
<span>Here's the ones we use!</span><br>
#a dummy text</p>
<div class="image">
<img type=" image/webp" src="../img/sample-fish.jpg"/>
</div>
</div>
</div>
<div class="strip2">
<div class="products">
<h3>All products</h3>
<div class="product">
<div class="image">
<img type=" image/webp" src="../img/sample-fertilizer.svg" />
</div>
<h5>Aloe</h5>
<p>We use Aloe Vera as a root stimulant.<br>
Aloe Vera's salysilic acid is a natural root stimulant.<br>
The product is a mixture of Aloe Vera juice and water.<br>
Find out more in our <a type="text/html" href="../learn/blog">Blog</a>.<br>
#a dummy text<br>
</p>
<div class="click">
<button><a href="#">More</a></button>
<button id="app"><a href="#">DIY</a></button>
</div>
</div>
</div>
</div>
</div>
</div>

+ 0
- 71
templates/assets/components/greentech-content.html View File

@ -1,71 +0,0 @@
<div class="page-wrapper">
<section class="title">
<div id="heading">
<h1 id="two">Green</h1>
<h1 id="one">Tech</h1>
</div>
<p class="short">Start building your own automatic greenhouse with the IoT.</p>
<div class="image">
<!--Threejs Canvas-->
<canvas id = "artifactCanvas"></canvas>
</section>
<section id="about">
<p> Greentech or the use of the IoT in agriculture is increasing but due to high costs and complexity not accessible to everyone.<br>
We want you to be able to create your own automatic greenhouse with our DiY solutions.<br>
<span>Explore our projects and get inspired.</span>
</p>
</section>
<section id="links">
<div id="auto-link">
<div class="image">
<a href="automation.html">
<!--insert a video here-->
</a>
</div>
<div class="description">
<h3 class="heading">Automation</h3>
<p class="text">Read about our greenhouse-automation projects.<br>
We are at the beginning of our journey.<br>We are currently refurbishing the greenhouse<br> that will soon be our first fully automized prototype.
#dummy text<br><br>
<span>Learn where we'll be going and where we stand. </span></p>
</div>
<div class="page-button">
<a href="automation.html">Read</a>
</div>
</div>
<div id="tools-link">
<div class="image">
<a href="greenlab.html">
<!--add a picture of an automation application in use-->
</a>
</div>
<div class="description">
<h3 class="heading">Io<span>Things</span></h3>
<p class="text">Explore the Things that take care of our plants.<br>
We are currently working on the developement <br>of systems that help us automize our greenhouse step by step.<br><br>
<span>Read about current and future projects.</span>
</div>
<div class="page-button">
<a href="greenlab.html">Read</a>
</div>
</div>
<div id="you-link">
<div class="image">
<a href="whatsthat.html">
</a>
</div>
<div class="description">
<h3 class="heading">Di<span><i class="fa fa-check"></i></span></h3>
<p>Check out our tutorials and code.<br>
<br>Everybody should know how to automate a garden and grow superlocal organic crops.<br><br>
Here you can find tutorials on building IoT solutions and the code that brings them to life.
</div>
<div class="page-button">
<a href="whatsthat.html">Do it</a>
</div>
</div>
</section>
</div>

+ 0
- 46
templates/assets/components/iot-content.html View File

@ -1,46 +0,0 @@
<div class="page-wrapper">
<div class="info">
<h1>IoT</h1>
<p>The Raspberry Pi Greenhouse.<br><br>
<span>Learn about what's to come!</span></p>
<div class="image">
</div>
</div>
<div class="things-container">
<div class="strip">
<div class="about">
<h3>Built and play.</h3>
<p>Puzzle together your greenhouse with our out of the box modules or check out our tutorials, get a Pi and do it yourself.<br>
Those greenhouses don't spy on you and you can repair and program them yourself. While experimenting both you and them learn.<br><br>
They are so awesome, they record how your plants are doing and then act itelligently acording to their needs.<br>
Sweet sweet nothing still but we are developing the first modules.
<br>
#a dummy text</p>
<div class="image">
<!--add a video of a working iot module-->
</div>
</div>
</div>
<div class="strip2">
<div class="products">
<h3>All Modules</h3>
<div class="product">
<div class="image">
<img type=" image/webp" src="../img/sample-module.jpg"/>
</div>
<h5>Go with the flow</h5>
<p>This module consists of a humidity sensor, a water pump and a tube.<br><br>
Water is given based on your plants specific needs.<br>
Dreaming..here could be projects like this one.<br>
Find out how we built it on our <a href="../learn/blog">Blog</a>.<br>
#a dummy text<br>
</p>
<div class="click">
<button><a href="#">More</a></button>
<button id="app"><a href="#">DIY</a></button>
</div>
</div>
</div>
</div>
</div>
</div>

+ 0
- 102
templates/assets/components/learn-content.html View File

@ -1,102 +0,0 @@
<div class="page-wrapper">
<section class="title">
<div id="heading">
<h1>Learn</h1>
</div>
<p class="short">The who, the how, the why and the <br>where.
<div class="image">
<img type="image/webp" src="img/sample-magnifier.png">
</div>
</section>
<section id="about">
<p> We want you to know that we want you to know everything :)<br><br>
Find out who we are, where we are, what we are doing and why.<br>
Learn about our partners, their projects and visit our lab. <br>
Get all the information you desire and<br> find out how to meet us if you still want to know more.<br>
Check out our blog to stay in touch or follow us on social media.
</p>
</section>
<section id="links">
<div id="us-link">
<div class="image">
<a href="whoweare.html">
<img type="image/webp" src="img/sample-faces.jpg">
</a>
</div>
<div class="description">
<h3 class="heading">About <span> Us </span></h3>
<p class="text">We are currently a collective of 5 people, determined to connect science to agriculture and specifically the Cannabis plant.<br><br>
Our lab is located on the italian westcoast and that is where our plants and ideas grow.<br><br>
The main engine of this project is obtaining information about our plants relations and to share those with our customers.<br><br>
We are cultivating and processing our plants ourselves.<br>
Our products are 100% organic grab-bags of information.</p>
</div>
<div class="page-button">
<a href="whoweare.html">Read More</a>
</div>
</div>
<div id="partner-link">
<div class="image">
<a href="partners.html">
<img type="image/webp" src="img/sample-partners.jpg">
</a>
</div>
<div class="description">
<h3 class="heading">Partners</span></h3>
<p class="text">#Get to know our partners.<br>
They provide us with information about the area and a variety of outdoor grown CBD strains.<br><br>
Learn about our partners and their produce.#dummy
</p>
</div>
<div class="page-button">
<a href="partners.html">Learn</a>
</div>
</div>
<div id="meet-link">
<div class="image">
<a href="meet.html">
<h1 id="plus">&</h1>
</a>
</div>
<div class="description">
<h3 class="heading">Meet <span>Us</span></h3>
<p class="text">Find out how to meet us.<br>
Feel free to give us a call if there is something on your mind.<br>
</p>
</div>
<div class="page-button">
<a href="spiderpi.html">Contact</a>
</div>
</div>
<div class="desktop-link">
<div id="blog-link">
<div class="description">
<h3 class="heading">Blog</h3>
<p class="text">CBD.Permaculture.Tech.<br><br>
Read about our Experiments and explore news about CBD, the benefits of Permaculture and the future of farming.<br><br>
Learn and DiY.<br>
</p>
</div>
<div class="page-button">
<a href="blog.html">Read</a>
</div>
</div>
<div id="code-link">
<div class="description">
<h3 class="heading">Code</h3>
<p class="text">Find the code behind all our projects.<br><br>
Feel free to use and customize it for your own* work.<br><br>
Log in, get our code & share yours - like this we all keep moving and stay inspired.</p>
</div>
<div class="page-button">
<a href="code.html">Explore</a>
</div>
</div>
</div>
</section>
</div>

+ 0
- 133
templates/assets/components/main-nav.html View File

@ -1,133 +0,0 @@
<div id="main-bar">
<div id="logo-container">
<a href="/">
<picture>
<source srcset="../img/Logo.svg" type="image/webp">
<img class="logo" type="image/webp" src= "img/Logo.svg">
</picture>
</a>
</div>
<!--desktop nav-->
<nav class="main-navigation-bar">
<ul>
<li><a type="text/html" href="/experiments"> EXPERIMENTS </a>
<ul id="experiments">
<li><a type="text/html" href="/experiments/oil">Oils</a></li>
<li><a type="text/html" href="/experiments/flower">Flower</a></li>
<li><a type="text/html" href="/experiments/candy">Edibles</a></li>
</ul>
</ul>
<ul>
<li><a type="text/html" href="/permaculture">PERMACULTURE</a>
<ul>
<li><a class="pc" type="text/html" href="/permaculture/permApp">PermApp</a></li>
<li><a class="pc" type="text/html" href="/permaculture/greenlab">GreenLab</a></li>
<li><a class="pc"id="edit" href="/permaculture/about">What's that ?</a></li>
</ul>
</ul>
<ul>
<li><a type="text/html" href="/greentech">GREENTECH</a>
<ul>
<li><a type="text/html" href="/greentech/automation">Automation</a></li>
<li><a type="text/html" href="/greentech/IoT">IoT</a></li>
<li><a type="text/html" href="/greentech/DiY">DiY</a></li>
</ul>
</ul>
<ul>
<li><a type="text/html" href="/spider">SPIDER</a>
<ul>
<li><a type="text/html" href="/spider/spiderPi">SpiderPi</a></li>
<li><a type="text/html" href="/spider/join">Join</a></li>
</ul>
</ul>
<ul>
<li><a type="text/html" href="/learn">LEARN</a>
<ul id="learn">
<li id="broad" ><a href="/learn/about">About Us</a></li>
<li><a href="/learn/partners">Partners</a></li>
<li><a href="/learn/meet">Meet</a></li>
<li><a href="/learn/blog">Blog</a></li>
<li><a href="/learn/code">Code</a></li>
</ul>
</ul>
</nav>
<!--mobile nav-->
<nav class="hamburger-wrap">
<input type="checkbox" class="ham-btn" id="ham-btn">
<label for="ham-btn" class="hamburger" id="hamburger" onclick= "menu()" onclick="hide()">
<span class="hamburger-icon"></span>
</label>
</nav>
<div id="mobile-dropdown-container">
<div id="mobile-dropdown">
<ul>
<li onclick="menu2()"><a type="text/html" href="/experiments">EXPERIMENTS</a>
<span class="drop">
<i class="arrow down"></i>
</span>
<ul id="down">
<li><a type="text/html" href="/experiments/oil">Oils</a></li>
<li><a type="text/html" href="/experiments/flower">Flower</a></li>
<li><a type="text/html" href="/experiments/candy">Edibles</a></li>
</ul>
</ul>
<ul>
<li onclick="menu3()"><a type="text/html" href="/permaculture">PERMACULTURE</a>
<span class="drop">
<i class="arrow down"></i>
</span>
<ul id="down1">
<li><a href="/permaculture/permApp">PermApp</a></li>
<li><a href="/permaculture/greenlab">GreenLab</a></li>
<li><a href="/permaculture/about">What's that ?</a></li>
</ul>
</ul>
<ul>
<li onclick="menu4()"><a type="text/html" href="/greentech">GREENTECH</a>
<span class="drop">
<i class="arrow down"></i>
</span>
<ul id="down2">
<li><a type="text/html" href="/greentech/automation">Automation</a></li>
<li><a type="text/html" href="/greentech/IoT">IoT</a></li>
<li><a type="text/html" href="/greentech/DiY">DiY</a></li>
</ul>
</ul>
<ul>
<li onclick="menu5()"><a type="text/html" href="/spider">SPIDER</a>
<span class="drop">
<i class="arrow down"></i>
</span>
<ul id="down3">
<li><a type="text/html" href="/spider/spiderPi">SpiderPi</a></li>
<li><a type="text/html" href="/spider/join">Join</a></li>
</ul>
</ul>
<ul>
<li onclick="menu6()"><a type="text/html" href="/learn">LEARN</a>
<span class="drop">
<i class="arrow down"></i>
</span>
<ul id="down4">
<li><a type="text/html" href="/learn/about">About Us</a></li>
<li><a type="text/html" href="/learn/partners">Partners</a></li>
<li><a type="text/html" href="/learn/contact">Meet</a></li>
<li><a type="text/html" href="/learn/blog">Blog</a></li>
<li><a type="text/html" href="/learn/code">Code</a></li>
</ul>
</ul>
<a class="button" href="#">Shop</a>
</div>
</div>
</div>

+ 80
- 0
templates/assets/css/contact.css View File

@ -0,0 +1,80 @@
.container {
height: calc(100% - 30vh);
font-family: 'Lato', sans-serif;
}
.donation_container {
color: #333;
height: 40vh;
display: flex;
align-items: center;
text-align: center;
flex-direction: column;
justify-content: space-evenly;
border-bottom: solid 1vh #ff00ff;
}
.donation_container h1 {
color: #ff00ff;
}
.donation_container p {
font-size: 3vh;
line-height: 5vh;
}
.donation_container p span {
color: #333;
font-weight: 600;
}
.form_container {
position: relative;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
height: 100%;
width: 100%;
}
.right {
padding: 3vh 4vw;
}
.right h2 {
padding-bottom: 2vh;
}
.input {
border: solid;
border-top-color: currentcolor;
border-right-color: currentcolor;
border-bottom-color: currentcolor;
border-left-color: currentcolor;
border-radius: 4vw;
background-color: white;
padding: 1vh 1vw;
margin: 1vh 0;
border-color: #f0f;
}
#message {
width: 60vw;
height: 30vw;
}
#sub_btn {
background-color: white;
border: solid;
border-radius: 4vw;
border-color: #f0f;
width: 30vw;
height: 10vw;
color:#f0f;
cursor: pointer;
}

+ 46
- 3
templates/assets/css/index.css View File

@ -1,5 +1,31 @@
/* small mobile */
.banner {
height: 20vw;
background-color: #ff00ff;
display: flex;
align-items: center;
justify-content: center;
padding: 0 4vw;
line-height: 8vw;
letter-spacing: .125vw;
}
.banner h6 {
color: #fff;
font-family: 'Lato', sans-serif;
font-size: 5vw;
}
.banner h6 a {
text-decoration: none;
color: yellow;
}
.banner h6 a:active {
opacity: 60%;
}
.height {
height: 270vw;
position: relative;
@ -11,7 +37,6 @@
background-size: contain;
background-repeat: no-repeat;
height: calc(100% - 30vh);
}
img {
@ -67,7 +92,7 @@ img {
}
.link .sub_container p {
font-size: 2vw;
font-size: 3vw;
text-align: center;
color: #333;
background-color: rgba(255, 255, 255, 0.7);
@ -79,10 +104,19 @@ img {
flex-direction: column;
align-items: center;
padding: 1vw 2vw;
line-height: 4vw;
line-height: 4.5vw;
letter-spacing: .05vw;
}
.link .sub_container p a {
color: #333;
text-decoration: none;
}
.link .sub_container p a:active {
opacity: 60%;
}
@media(min-width: 300px) {
#hemp {
margin-left: 50vw;
@ -154,6 +188,15 @@ img {
width: 4.5rem !important;
height: 4.5rem !important;
}
.banner {
height: 10vw;
}
.banner h6 {
font-size: 2vw;
margin-left: 10vw;
}
}
@media (min-height: 500px) {

+ 2
- 2
templates/assets/css/navigation.css View File

@ -106,13 +106,13 @@
align-items: center;
z-index: 200;
position: fixed;
background-color: hsl(160, 51%, 80%);
max-height: 30vh;
margin-top: 5rem;
min-width: 80%;
right: 10%;
border-radius: .2rem;
box-shadow:.1rem .1rem #888;
background-color: #0cffae;
box-shadow: 0 0 10px hsl(160, 51%, 80%);
opacity: 85%;
transition: all .7 ease;
}

+ 20
- 2
templates/assets/css/pages.css View File

@ -41,9 +41,9 @@ img {
margin-top: 25vh;
color: #333;
font-size: 2.5vh;
padding: 2vh 2vw;
padding: 2vh 2vw 4vh 2vw;
letter-spacing: .1vw;
line-height: 4vh;
line-height: 4.25vh;
}
.content_container a {
@ -67,6 +67,20 @@ img {
padding-bottom: 4vh;
}
#smaller_text {
font-size: 6vh;
}
#adjust_padding {
padding-top: 4vh;
}
#tiny {
font-size: 4vh;
padding: 1vh 1vw;
text-align: center;
}
@media (min-width: 700px) {
.content_container p {
padding-bottom: 6vh;
@ -109,4 +123,8 @@ img {
#withbutton {
padding-bottom: 6vh;
}
#adjust_padding {
padding-top: 8vh;
}
}

BIN
templates/assets/img/3d_greenhouse.png View File

Before After
Width: 1990  |  Height: 1248  |  Size: 2.6 MiB

BIN
templates/assets/img/Canna17.JPG View File

Before After
Width: 6000  |  Height: 4000  |  Size: 8.7 MiB

BIN
templates/assets/img/assembly.jpg View File

Before After
Width: 720  |  Height: 1026  |  Size: 117 KiB

BIN
templates/assets/img/boat_construction.jpg View File

Before After
Width: 768  |  Height: 1024  |  Size: 124 KiB

BIN
templates/assets/img/boat_peace.jpg View File

Before After
Width: 1024  |  Height: 768  |  Size: 96 KiB

BIN
templates/assets/img/bootA.JPG View File

Before After
Width: 3264  |  Height: 2448  |  Size: 1.2 MiB

BIN
templates/assets/img/img_greenhouse.JPG View File

Before After
Width: 2976  |  Height: 1984  |  Size: 1.3 MiB

BIN
templates/assets/img/instagram-black.png View File

Before After
Width: 835  |  Height: 835  |  Size: 126 KiB

BIN
templates/assets/img/o_pi.jpg View File

Before After
Width: 1095  |  Height: 719  |  Size: 94 KiB

+ 0
- 77
templates/assets/img/peertube.svg View File

@ -1,77 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="600"
height="800.51971"
viewBox="0 0 158.75 211.80418"
version="1.1"
id="svg8"
inkscape:version="1.0.1 (0767f8302a, 2020-10-17)"
sodipodi:docname="peertube.svg">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.66075758"
inkscape:cx="471.46678"
inkscape:cy="409.10761"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
showgrid="false"
units="px"
inkscape:window-width="1368"
inkscape:window-height="836"
inkscape:window-x="72"
inkscape:window-y="27"
inkscape:window-maximized="1" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<g
stroke-width="32"
id="g900"
transform="matrix(0.29991077,0,0,0.29991077,-835.52104,277.38561)"
style="fill:#000000">
<path
d="m 2799,-911 v 341.344 l 256,-170.656"
fill="#211f20"
id="path894"
style="fill:#000000" />
<path
d="m 2799,-569.656 v 341.344 l 256,-170.656"
fill="#737373"
id="path896"
style="fill:#000000" />
<path
d="M 3055,-740.344 V -399 l 256,-170.656"
fill="#f1680d"
id="path898"
style="fill:#000000" />
</g>
</g>
</svg>

+ 0
- 107
templates/assets/img/peertube_white.svg View File

@ -1,107 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="600"
height="800.51971"
viewBox="0 0 158.75 211.80418"
version="1.1"
id="svg8"
inkscape:version="1.0.1 (0767f8302a, 2020-10-17)"
sodipodi:docname="peertube_white.svg">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.66075758"
inkscape:cx="471.46678"
inkscape:cy="409.10761"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
showgrid="false"
units="px"
inkscape:window-width="1368"
inkscape:window-height="836"
inkscape:window-x="72"
inkscape:window-y="27"
inkscape:window-maximized="1" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<g
stroke-width="32"
id="g900"
transform="matrix(0.29991077,0,0,0.29991077,-835.52104,277.38561)"
style="fill:#000000">
<path
d="m 2799,-911 v 341.344 l 256,-170.656"
fill="#211f20"
id="path894"
style="fill:#000000" />
<path
d="m 2799,-569.656 v 341.344 l 256,-170.656"
fill="#737373"
id="path896"
style="fill:#000000" />
<path
d="M 3055,-740.344 V -399 l 256,-170.656"
fill="#f1680d"
id="path898"
style="fill:#000000" />
</g>
<path
style="opacity:0.980099;fill:#ffffff;stroke:#000000;stroke-width:1.51341;stroke-linecap:round;stroke-linejoin:bevel;paint-order:stroke fill markers"
d="m 305.74791,403.05798 c 0,-105.29802 0.34324,-191.45094 0.76275,-191.45094 1.28574,0 287.11975,190.86606 286.55655,191.34852 -0.29,0.24845 -65.05548,43.44957 -143.92329,96.00254 l -143.39601,95.55082 z"
id="path932"
transform="scale(0.26458333)" />
<path
style="opacity:0.980099;fill:#ffffff;stroke:#000000;stroke-width:1.51341;stroke-linecap:round;stroke-linejoin:bevel;paint-order:stroke fill markers"
d="M 15.172357,596.01428 V 403.80897 l 143.730673,95.7243 c 79.05188,52.64837 143.73068,96.06482 143.73068,96.48101 0,0.41619 -64.6788,43.83264 -143.73068,96.48102 L 15.172357,788.2196 Z"
id="path934"
transform="scale(0.26458333)" />
<path
style="opacity:0.980099;fill:#ffffff;stroke:#000000;stroke-width:1.51341;stroke-linecap:round;stroke-linejoin:bevel;paint-order:stroke fill markers"
d="m 15.172357,209.42624 c 0,-105.34494 0.343236,-191.536241 0.762747,-191.536241 2.535288,0 286.900376,191.161701 285.830106,192.146541 -1.19166,1.09654 -280.257186,187.13306 -284.701085,189.79342 -1.509415,0.90361 -1.891768,-37.57967 -1.891768,-190.40372 z"
id="path936"
transform="scale(0.26458333)" />
<path
style="opacity:0.980099;fill:#ffffff;stroke:#000000;stroke-width:1.51341;stroke-linecap:round;stroke-linejoin:bevel;paint-order:stroke fill markers"
d="m 305.96288,505.76183 c 0.11823,-48.16556 0.629,-133.72281 1.13506,-190.12723 l 0.92009,-102.5535 138.11747,92.28118 c 75.96461,50.75465 139.72887,93.49667 141.69837,94.98227 l 3.5809,2.70108 -138.67154,92.43443 c -76.26934,50.83895 -140.54439,93.65418 -142.83343,95.14497 l -4.16189,2.71054 z"
id="path938"
transform="scale(0.26458333)" />
<path
style="opacity:0.980099;fill:#ffffff;stroke:#000000;stroke-width:1.51341;stroke-linecap:round;stroke-linejoin:bevel;paint-order:stroke fill markers"
d="M 16.433516,302.03354 C 16.156067,249.38564 16.269582,164.2335 16.685771,112.80656 L 17.442478,19.303037 116.57112,85.632154 C 212.95651,150.12571 289.31423,201.75516 296.34511,207.18678 l 3.46123,2.67393 -9.51488,6.73869 C 274.46859,227.80556 18.920213,397.757 17.892871,397.757 c -0.525196,0 -1.181906,-43.07555 -1.459355,-95.72346 z"
id="path940"
transform="scale(0.26458333)" />
<path
style="opacity:0.980099;fill:#ffffff;stroke:#000000;stroke-width:1.51341;stroke-linecap:round;stroke-linejoin:bevel;paint-order:stroke fill markers"
d="m 15.172357,596.01428 c 0,-152.28117 0.382455,-190.64328 1.891768,-189.75313 12.168488,7.17662 282.630135,188.76003 282.630135,189.75313 0,0.9931 -270.461647,182.57651 -282.630135,189.75314 -1.509313,0.89014 -1.891768,-37.47196 -1.891768,-189.75314 z"
id="path942"
transform="scale(0.26458333)" />
</g>
</svg>

+ 0
- 132
templates/assets/img/permapp.svg View File

@ -1,132 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="800"
height="800"
viewBox="0 0 211.66667 211.66667"
version="1.1"
id="svg8"
inkscape:version="1.0.1 (0767f8302a, 2020-10-17)"
sodipodi:docname="permapp.svg">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.30052038"
inkscape:cx="410.9915"
inkscape:cy="480.93833"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
showgrid="false"
units="px"
inkscape:window-width="1368"
inkscape:window-height="836"
inkscape:window-x="72"
inkscape:window-y="27"
inkscape:window-maximized="1" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<g
id="YinYang"
fill="#000000"
stroke="none"
stroke-width="0"
fill-rule="evenodd"
transform="matrix(0.25588408,0,0,0.25588408,4.4908977,3.8141213)"
style="fill:#666666">
<title
id="title893">Yin-Yang, by Adam Stanislav</title>
<desc
id="desc895">The entire graphic is drawn as a single path filled with black (or any other color you change the value of “fill” in line 4). The other half, usually shown in white is created here as a hole in the path. That means it is completely transparent, and has whatever color its background has. To achieve this, not just with SVG but with other vector formats, any black portion of the path is drawn counterclockwise, any “white” portion clockwise. Also, this graphic is taking advantage of the kappa constant described in my e-book Bézier Circles and other shapes, freely downloadable from https://www.smashwords.com/books/view/483578 .</desc>
<!-- Note to self: Relative Bézier differences (“c”) are differences of a point from the STARTING point of the curve segment, not from the most recent point. -->
<path
d="M 400,0 C 179.086,0 0,179.086 0,400 0,620.914 179.086,800 400,800 620.914,800 800,620.914 800,400 800,179.086 620.914,0 400,0 Z m 0,10 C 184.609,10 10,184.609 10,400 10,615.391 184.609,790 400,790 292.304,790 205,682.304 205,600 205,492.3 292.304,400 400,400 507.7,400 600,292.304 600,200 600,92.304 507.7,10 400,10 Z m 0,655 c 35.895,0 65,-29.105 65,-65 0,-35.895 -29.105,-65 -65,-65 -35.895,0 -65,29.105 -65,65 0,35.895 29.105,65 65,65 z m 0,-533 c -37.555,0 -68,30.445 -68,68 0,37.555 30.445,68 68,68 37.555,0 68,-30.445 68,-68 0,-37.555 -30.445,-68 -68,-68 z"
id="path897"
style="fill:#666666" />
</g>
<path
style="fill:#00ffff;stroke:#000000;stroke-width:8.2867;stroke-linecap:round;stroke-linejoin:bevel;paint-order:stroke fill markers"
d=""
id="path1070" />
<g
id="layer1-4"
transform="matrix(0.18413703,0,0,0.18413703,33.807122,-51.497763)"
fill-rule="evenodd"
style="fill:#3ebe93;fill-opacity:1">
<path
id="path2395"
d="m 368.9,527.34 c -9.44,-62.95 -61.54,-87.74 -82.47,-96.95 -18.6,-8.17 -22.66,-23.29 -22.66,-23.29 0,0 -5.04,17 -5.04,25.18 0,8.19 -1.89,46.59 13.22,78.69 15.11,32.11 61.07,43.44 74.29,59.18 13.22,15.74 8.18,43.44 8.18,43.44 0,0 -0.63,-22.04 -15.74,-35.26 -15.11,-13.22 -52.25,-13.22 -73.02,-50.99 -20.78,-37.77 -22.54,-108.23 -4.41,-134.72 8.89,-12.98 0.69,6.86 14.48,19.52 12.79,11.74 51.52,23.4 74.28,46.58 25.96,26.44 19.52,69.88 18.89,68.62 z"
style="fill:#3ebe93;fill-opacity:1" />
<path
id="path3199"
d="m 339.99,553.06 c 5.43,-24.98 5.27,-36.33 -9.84,-52.07 -15.41,-16.06 -30.43,-10.7 -47.54,-39.12 8.9,34.53 30.97,31.92 43.28,50.92 12.02,18.56 12.87,39.59 14.1,40.27 z"
style="fill:#3ebe93;fill-opacity:1" />
<path
id="path3201"
d="m 388.32,524.74 c 24.35,-7.79 34.1,-13.6 40.18,-34.56 6.2,-21.37 -5.95,-31.7 10.11,-60.73 -25.46,24.98 -12.16,42.78 -22.46,62.94 -10.06,19.69 -27.85,30.94 -27.83,32.35 z"
style="fill:#3ebe93;fill-opacity:1" />
<path
id="path3203"
d="m 438.33,550.91 c 18.91,17.19 28.82,22.72 50.01,17.51 21.61,-5.32 24.48,-21.01 57.65,-21.61 -34.36,-9.56 -43.13,10.86 -65.74,12.02 -22.09,1.13 -40.72,-8.65 -41.92,-7.92 z"
style="fill:#3ebe93;fill-opacity:1" />
<path
id="path3205"
d="m 441.81,611.35 c -5.43,24.98 -5.27,36.33 9.84,52.07 15.41,16.06 30.43,10.7 47.54,39.12 -8.9,-34.54 -30.97,-31.92 -43.28,-50.92 -12.02,-18.56 -12.87,-39.59 -14.1,-40.27 z"
style="fill:#3ebe93;fill-opacity:1" />
<path
id="path3207"
d="m 397.25,640.3 c -24.35,7.78 -34.09,13.6 -40.17,34.55 -6.2,21.38 5.95,31.71 -10.11,60.74 25.46,-24.98 12.15,-42.79 22.45,-62.94 10.07,-19.7 27.86,-30.94 27.83,-32.35 z"
style="fill:#3ebe93;fill-opacity:1" />
<path
id="path3209"
d="m 351.66,614.13 c -18.92,-17.19 -28.83,-22.73 -50.01,-17.51 -21.62,5.31 -24.49,21 -57.66,21.61 34.36,9.56 43.13,-10.87 65.74,-12.02 22.09,-1.13 40.72,8.65 41.93,7.92 z"
style="fill:#3ebe93;fill-opacity:1" />
<path
id="path2391"
d="m 427.47,533.1 c 49.8,-39.65 45.23,-97.16 42.73,-119.89 -2.22,-20.2 8.84,-31.27 8.84,-31.27 0,0 -17.24,4.13 -24.33,8.23 -7.08,4.09 -41.28,21.65 -61.53,50.79 -20.25,29.14 -7.09,74.6 -14.11,93.92 -7.02,19.32 -33.52,28.8 -33.52,28.8 0,0 18.76,-11.56 22.66,-31.25 3.89,-19.7 -14.68,-51.86 7.64,-88.74 22.33,-36.88 82.47,-73.63 114.47,-71.17 15.69,1.2 -5.59,4.02 -9.66,22.29 -3.78,16.95 5.5,56.32 -3.2,87.63 -9.92,35.7 -50.76,51.84 -49.99,50.66 z"
style="fill:#3ebe93;fill-opacity:1" />
<path
id="path2393"
d="m 452.6,584.82 c 59.24,23.3 106.76,-9.42 125.19,-22.94 16.38,-12.02 31.5,-7.98 31.5,-7.98 0,0 -12.2,-12.86 -19.29,-16.96 -7.09,-4.09 -39.4,-24.92 -74.76,-27.89 -35.35,-2.97 -68.14,31.16 -88.38,34.74 -20.24,3.58 -41.71,-14.63 -41.71,-14.63 0,0 19.39,10.47 38.4,4 19,-6.48 37.57,-38.64 80.67,-37.75 43.1,0.9 105,34.6 118.87,63.55 6.8,14.19 -6.29,-2.83 -24.14,2.78 -16.57,5.2 -46.02,32.92 -77.49,41.04 -35.87,9.26 -70.27,-18.04 -68.86,-17.96 z"
style="fill:#3ebe93;fill-opacity:1" />
<path
id="path2396"
d="m 416.88,630.92 c 9.44,62.95 61.53,87.74 82.46,96.94 18.61,8.18 22.67,23.3 22.67,23.3 0,0 5.03,-17 5.03,-25.18 0,-8.19 1.89,-46.59 -13.22,-78.7 -15.11,-32.1 -61.06,-43.43 -74.28,-59.17 -13.22,-15.74 -8.19,-43.44 -8.19,-43.44 0,0 0.63,22.04 15.74,35.26 15.11,13.22 52.25,13.22 73.03,50.99 20.77,37.77 22.54,108.23 4.4,134.71 -8.89,12.99 -0.69,-6.85 -14.48,-19.51 -12.79,-11.74 -51.52,-23.4 -74.28,-46.58 -25.96,-26.44 -19.51,-69.88 -18.88,-68.62 z"
style="fill:#3ebe93;fill-opacity:1" />
<path
id="path2398"
d="m 359.84,624.4 c -49.8,39.65 -45.22,97.17 -42.72,119.89 2.21,20.2 -8.84,31.27 -8.84,31.27 0,0 17.23,-4.13 24.32,-8.22 7.09,-4.1 41.29,-21.66 61.54,-50.8 20.25,-29.14 7.08,-74.6 14.1,-93.92 7.02,-19.31 33.53,-28.8 33.53,-28.8 0,0 -18.77,11.56 -22.66,31.25 -3.9,19.7 14.67,51.86 -7.65,88.74 -22.32,36.88 -82.46,73.64 -114.46,71.17 -15.7,-1.2 5.59,-4.02 9.66,-22.29 3.77,-16.95 -5.5,-56.32 3.2,-87.63 9.92,-35.69 50.76,-51.83 49.98,-50.66 z"
style="fill:#3ebe93;fill-opacity:1" />
<path
id="path2400"
d="m 335.39,573.35 c -59.24,-23.3 -106.76,9.42 -125.2,22.95 -16.38,12.02 -31.5,7.98 -31.5,7.98 0,0 12.2,12.86 19.29,16.95 7.09,4.09 39.4,24.93 74.76,27.89 35.36,2.97 68.15,-31.16 88.39,-34.74 20.24,-3.58 41.71,14.63 41.71,14.63 0,0 -19.4,-10.47 -38.4,-4 -19.01,6.48 -37.58,38.64 -80.68,37.75 -43.09,-0.9 -105,-34.6 -118.87,-63.54 -6.8,-14.2 6.29,2.83 24.14,-2.78 16.57,-5.21 46.03,-32.92 77.49,-41.04 35.87,-9.26 70.27,18.03 68.87,17.95 z"
style="fill:#3ebe93;fill-opacity:1" />
</g>
</g>
</svg>

+ 0
- 132
templates/assets/img/permapp_black.svg View File

@ -1,132 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="800"
height="800"
viewBox="0 0 211.66667 211.66667"
version="1.1"
id="svg8"
inkscape:version="1.0.1 (0767f8302a, 2020-10-17)"
sodipodi:docname="permapp_black.svg">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.46689326"
inkscape:cx="410.9915"
inkscape:cy="480.93833"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
showgrid="false"
units="px"
inkscape:window-width="1368"
inkscape:window-height="836"
inkscape:window-x="72"
inkscape:window-y="27"
inkscape:window-maximized="1" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<g
id="YinYang"
fill="#000000"
stroke="none"
stroke-width="0"
fill-rule="evenodd"
transform="matrix(0.25588408,0,0,0.25588408,4.4908977,3.8141213)"
style="fill:#000000">
<title
id="title893">Yin-Yang, by Adam Stanislav</title>
<desc
id="desc895">The entire graphic is drawn as a single path filled with black (or any other color you change the value of “fill” in line 4). The other half, usually shown in white is created here as a hole in the path. That means it is completely transparent, and has whatever color its background has. To achieve this, not just with SVG but with other vector formats, any black portion of the path is drawn counterclockwise, any “white” portion clockwise. Also, this graphic is taking advantage of the kappa constant described in my e-book Bézier Circles and other shapes, freely downloadable from https://www.smashwords.com/books/view/483578 .</desc>
<!-- Note to self: Relative Bézier differences (“c”) are differences of a point from the STARTING point of the curve segment, not from the most recent point. -->
<path
d="M 400,0 C 179.086,0 0,179.086 0,400 0,620.914 179.086,800 400,800 620.914,800 800,620.914 800,400 800,179.086 620.914,0 400,0 Z m 0,10 C 184.609,10 10,184.609 10,400 10,615.391 184.609,790 400,790 292.304,790 205,682.304 205,600 205,492.3 292.304,400 400,400 507.7,400 600,292.304 600,200 600,92.304 507.7,10 400,10 Z m 0,655 c 35.895,0 65,-29.105 65,-65 0,-35.895 -29.105,-65 -65,-65 -35.895,0 -65,29.105 -65,65 0,35.895 29.105,65 65,65 z m 0,-533 c -37.555,0 -68,30.445 -68,68 0,37.555 30.445,68 68,68 37.555,0 68,-30.445 68,-68 0,-37.555 -30.445,-68 -68,-68 z"
id="path897"
style="fill:#000000" />
</g>
<path
style="fill:#00ffff;stroke:#000000;stroke-width:8.2867;stroke-linecap:round;stroke-linejoin:bevel;paint-order:stroke fill markers"
d=""
id="path1070" />
<g
id="layer1-4"
transform="matrix(0.18413703,0,0,0.18413703,33.807122,-51.497763)"
fill-rule="evenodd"
style="fill:#3ebe93;fill-opacity:1">
<path
id="path2395"
d="m 368.9,527.34 c -9.44,-62.95 -61.54,-87.74 -82.47,-96.95 -18.6,-8.17 -22.66,-23.29 -22.66,-23.29 0,0 -5.04,17 -5.04,25.18 0,8.19 -1.89,46.59 13.22,78.69 15.11,32.11 61.07,43.44 74.29,59.18 13.22,15.74 8.18,43.44 8.18,43.44 0,0 -0.63,-22.04 -15.74,-35.26 -15.11,-13.22 -52.25,-13.22 -73.02,-50.99 -20.78,-37.77 -22.54,-108.23 -4.41,-134.72 8.89,-12.98 0.69,6.86 14.48,19.52 12.79,11.74 51.52,23.4 74.28,46.58 25.96,26.44 19.52,69.88 18.89,68.62 z"
style="fill:#3ebe93;fill-opacity:1" />
<path
id="path3199"
d="m 339.99,553.06 c 5.43,-24.98 5.27,-36.33 -9.84,-52.07 -15.41,-16.06 -30.43,-10.7 -47.54,-39.12 8.9,34.53 30.97,31.92 43.28,50.92 12.02,18.56 12.87,39.59 14.1,40.27 z"
style="fill:#3ebe93;fill-opacity:1" />
<path
id="path3201"
d="m 388.32,524.74 c 24.35,-7.79 34.1,-13.6 40.18,-34.56 6.2,-21.37 -5.95,-31.7 10.11,-60.73 -25.46,24.98 -12.16,42.78 -22.46,62.94 -10.06,19.69 -27.85,30.94 -27.83,32.35 z"
style="fill:#3ebe93;fill-opacity:1" />
<path
id="path3203"
d="m 438.33,550.91 c 18.91,17.19 28.82,22.72 50.01,17.51 21.61,-5.32 24.48,-21.01 57.65,-21.61 -34.36,-9.56 -43.13,10.86 -65.74,12.02 -22.09,1.13 -40.72,-8.65 -41.92,-7.92 z"
style="fill:#3ebe93;fill-opacity:1" />
<path
id="path3205"
d="m 441.81,611.35 c -5.43,24.98 -5.27,36.33 9.84,52.07 15.41,16.06 30.43,10.7 47.54,39.12 -8.9,-34.54 -30.97,-31.92 -43.28,-50.92 -12.02,-18.56 -12.87,-39.59 -14.1,-40.27 z"
style="fill:#3ebe93;fill-opacity:1" />
<path
id="path3207"
d="m 397.25,640.3 c -24.35,7.78 -34.09,13.6 -40.17,34.55 -6.2,21.38 5.95,31.71 -10.11,60.74 25.46,-24.98 12.15,-42.79 22.45,-62.94 10.07,-19.7 27.86,-30.94 27.83,-32.35 z"
style="fill:#3ebe93;fill-opacity:1" />
<path
id="path3209"
d="m 351.66,614.13 c -18.92,-17.19 -28.83,-22.73 -50.01,-17.51 -21.62,5.31 -24.49,21 -57.66,21.61 34.36,9.56 43.13,-10.87 65.74,-12.02 22.09,-1.13 40.72,8.65 41.93,7.92 z"
style="fill:#3ebe93;fill-opacity:1" />
<path
id="path2391"
d="m 427.47,533.1 c 49.8,-39.65 45.23,-97.16 42.73,-119.89 -2.22,-20.2 8.84,-31.27 8.84,-31.27 0,0 -17.24,4.13 -24.33,8.23 -7.08,4.09 -41.28,21.65 -61.53,50.79 -20.25,29.14 -7.09,74.6 -14.11,93.92 -7.02,19.32 -33.52,28.8 -33.52,28.8 0,0 18.76,-11.56 22.66,-31.25 3.89,-19.7 -14.68,-51.86 7.64,-88.74 22.33,-36.88 82.47,-73.63 114.47,-71.17 15.69,1.2 -5.59,4.02 -9.66,22.29 -3.78,16.95 5.5,56.32 -3.2,87.63 -9.92,35.7 -50.76,51.84 -49.99,50.66 z"
style="fill:#3ebe93;fill-opacity:1" />
<path
id="path2393"
d="m 452.6,584.82 c 59.24,23.3 106.76,-9.42 125.19,-22.94 16.38,-12.02 31.5,-7.98 31.5,-7.98 0,0 -12.2,-12.86 -19.29,-16.96 -7.09,-4.09 -39.4,-24.92 -74.76,-27.89 -35.35,-2.97 -68.14,31.16 -88.38,34.74 -20.24,3.58 -41.71,-14.63 -41.71,-14.63 0,0 19.39,10.47 38.4,4 19,-6.48 37.57,-38.64 80.67,-37.75 43.1,0.9 105,34.6 118.87,63.55 6.8,14.19 -6.29,-2.83 -24.14,2.78 -16.57,5.2 -46.02,32.92 -77.49,41.04 -35.87,9.26 -70.27,-18.04 -68.86,-17.96 z"
style="fill:#3ebe93;fill-opacity:1" />
<path
id="path2396"
d="m 416.88,630.92 c 9.44,62.95 61.53,87.74 82.46,96.94 18.61,8.18 22.67,23.3 22.67,23.3 0,0 5.03,-17 5.03,-25.18 0,-8.19 1.89,-46.59 -13.22,-78.7 -15.11,-32.1 -61.06,-43.43 -74.28,-59.17 -13.22,-15.74 -8.19,-43.44 -8.19,-43.44 0,0 0.63,22.04 15.74,35.26 15.11,13.22 52.25,13.22 73.03,50.99 20.77,37.77 22.54,108.23 4.4,134.71 -8.89,12.99 -0.69,-6.85 -14.48,-19.51 -12.79,-11.74 -51.52,-23.4 -74.28,-46.58 -25.96,-26.44 -19.51,-69.88 -18.88,-68.62 z"
style="fill:#3ebe93;fill-opacity:1" />
<path
id="path2398"
d="m 359.84,624.4 c -49.8,39.65 -45.22,97.17 -42.72,119.89 2.21,20.2 -8.84,31.27 -8.84,31.27 0,0 17.23,-4.13 24.32,-8.22 7.09,-4.1 41.29,-21.66 61.54,-50.8 20.25,-29.14 7.08,-74.6 14.1,-93.92 7.02,-19.31 33.53,-28.8 33.53,-28.8 0,0 -18.77,11.56 -22.66,31.25 -3.9,19.7 14.67,51.86 -7.65,88.74 -22.32,36.88 -82.46,73.64 -114.46,71.17 -15.7,-1.2 5.59,-4.02 9.66,-22.29 3.77,-16.95 -5.5,-56.32 3.2,-87.63 9.92,-35.69 50.76,-51.83 49.98,-50.66 z"
style="fill:#3ebe93;fill-opacity:1" />
<path
id="path2400"
d="m 335.39,573.35 c -59.24,-23.3 -106.76,9.42 -125.2,22.95 -16.38,12.02 -31.5,7.98 -31.5,7.98 0,0 12.2,12.86 19.29,16.95 7.09,4.09 39.4,24.93 74.76,27.89 35.36,2.97 68.15,-31.16 88.39,-34.74 20.24,-3.58 41.71,14.63 41.71,14.63 0,0 -19.4,-10.47 -38.4,-4 -19.01,6.48 -37.58,38.64 -80.68,37.75 -43.09,-0.9 -105,-34.6 -118.87,-63.54 -6.8,-14.2 6.29,2.83 24.14,-2.78 16.57,-5.21 46.03,-32.92 77.49,-41.04 35.87,-9.26 70.27,18.03 68.87,17.95 z"
style="fill:#3ebe93;fill-opacity:1" />
</g>
</g>
</svg>

BIN
templates/assets/img/pi.JPG View File

Before After
Width: 2976  |  Height: 1984  |  Size: 661 KiB

+ 0
- 123
templates/assets/img/pixelfed.svg View File

@ -1,123 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="39.134174"
height="39.12608"
viewBox="0 0 39.134174 39.12608"
version="1.1"
id="svg29"
sodipodi:docname="pixelfed.svg"
inkscape:version="1.0.1 (0767f8302a, 2020-10-17)">
<metadata
id="metadata33">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>04/full/color/svg/pixelfed-full-color</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1368"
inkscape:window-height="836"
id="namedview31"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="3.845971"
inkscape:cx="14.716744"
inkscape:cy="14.87764"
inkscape:window-x="72"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg29"
inkscape:document-rotation="0" />
<!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
<title
id="title2">04/full/color/svg/pixelfed-full-color</title>
<desc
id="desc4">Created with Sketch.</desc>
<defs
id="defs6" />
<g
id="photos"
transform="translate(-0.048611,-0.181307)"
style="fill:#000000;fill-rule:nonzero;stroke:none;stroke-width:1">
<g
id="Group-3"
style="fill:#000000">
<g
id="Group-2"
style="fill:#000000">
<path
d="m 17.470167,18.705316 c 0.04048,0.282647 0.06881,0.568667 0.06881,0.862108 0,3.339151 -2.732032,6.071183 -6.071183,6.071183 H 6.0711833 C 2.7320325,25.638607 0,22.906575 0,19.567424 c 0,-3.014005 2.2281243,-5.526126 5.117333,-5.987536 0,0 6.745e-4,6.74e-4 6.745e-4,6.74e-4 0,-6.74e-4 -6.745e-4,-0.0013 -6.745e-4,-0.0013 0.311654,-0.04992 0.6287047,-0.08297 0.9538503,-0.08297 h 5.3966077 c 3.04571,0 5.579417,2.275344 6.002376,5.209075 z"
id="Combined-Shape"
inkscape:connector-curvature="0"
style="fill:#000000" />
<path
d="M 25.558333,5.1132855 C 25.092875,2.2281243 22.582778,0.00404746 19.571471,0.00404746 c -3.011307,0 -5.521404,2.22407684 -5.986861,5.10923804 0.258363,0.186183 0.507956,0.3885557 0.74001,0.6206099 l 3.816076,3.816076 c 0.668504,0.6685046 1.141382,1.4597826 1.430775,2.3009786 0.443871,1.28844 0.443871,2.695605 0,3.984045 -0.199674,0.578786 -0.488393,1.131264 -0.86683,1.638545 0.283997,0.04115 0.572041,0.07016 0.86683,0.07016 0.29479,0 0.582834,-0.02833 0.86683,-0.07016 0.626681,-0.09107 1.221657,-0.277251 1.772111,-0.545732 1.22503,-0.596999 2.22003,-1.591999 2.817029,-2.817029 0.389905,-0.800047 0.615214,-1.693185 0.615214,-2.638941 V 6.0752308 c 0,-0.3278439 -0.03373,-0.6475929 -0.08432,-0.9619453 z"
id="Shape"
inkscape:connector-curvature="0"
style="fill:#000000" />
<path
d="m 24.818323,33.400278 -3.816076,-3.816076 c -0.668505,-0.668505 -1.141383,-1.459783 -1.430776,-2.300979 -0.443871,-1.28844 -0.443871,-2.695605 0,-3.984045 0.199675,-0.578786 0.488393,-1.131264 0.86683,-1.638545 -0.283996,-0.04115 -0.57204,-0.07016 -0.86683,-0.07016 -0.294789,0 -0.582833,0.02833 -0.86683,0.07016 -0.626681,0.09107 -1.221657,0.277251 -1.772111,0.545732 -1.22503,0.597 -2.220029,1.591999 -2.817029,2.817029 -0.389905,0.800047 -0.615213,1.693186 -0.615213,2.638941 v 5.396607 c 0,0.327844 0.03373,0.647593 0.08432,0.961946 0.465457,2.885161 2.975554,5.109238 5.986861,5.109238 3.011307,0 5.521404,-2.224077 5.986862,-5.109238 -0.258363,-0.186858 -0.507956,-0.389231 -0.74001,-0.62061 z"
id="path11"
inkscape:connector-curvature="0"
style="fill:#000000" />
<path
d="m 34.024935,13.580562 c -0.186183,0.258363 -0.388556,0.507956 -0.62061,0.74001 l -3.816076,3.816076 c -0.668505,0.668505 -1.459782,1.140708 -2.300978,1.430776 -1.28844,0.443871 -2.695606,0.443871 -3.984046,0 -0.578786,-0.199675 -1.131264,-0.488393 -1.638545,-0.86683 -0.04115,0.283996 -0.06948,0.57204 -0.06948,0.86683 0,0.294789 0.02833,0.582833 0.06948,0.86683 0.09107,0.626681 0.277251,1.221657 0.545732,1.772111 0.597,1.22503 1.592,2.220029 2.817029,2.817029 0.800047,0.389905 1.693186,0.615213 2.638941,0.615213 h 5.396608 c 0.327844,0 0.647593,-0.03373 0.961945,-0.08432 2.885161,-0.465457 5.109238,-2.975554 5.109238,-5.986861 0,-3.011307 -2.224077,-5.522079 -5.109238,-5.986862 z"
id="path13"
inkscape:connector-curvature="0"
style="fill:#000000" />
<path
d="M 33.404325,5.7338954 C 31.275364,3.6049337 27.927443,3.402561 25.558333,5.1132855 c 0.05059,0.3143524 0.08432,0.6341014 0.08432,0.9619453 v 5.3966072 c 0,0.945756 -0.225309,1.838894 -0.615214,2.638941 -0.596999,1.22503 -1.591999,2.22003 -2.817029,2.817029 -0.550454,0.268481 -1.14543,0.454664 -1.772111,0.545732 0.172017,0.230031 0.355502,0.45399 0.563946,0.662434 0.208444,0.208444 0.432403,0.391928 0.662433,0.563945 0.507281,0.378437 1.059759,0.66783 1.638545,0.86683 1.28844,0.443871 2.695606,0.443871 3.984046,0 0.841196,-0.290067 1.632473,-0.762271 2.300978,-1.430775 l 3.816076,-3.816076 c 0.232054,-0.232054 0.434427,-0.481648 0.62061,-0.74001 1.711399,-2.369111 1.508352,-5.7163564 -0.62061,-7.8459926 z"
id="path15"
inkscape:connector-curvature="0"
style="fill:#000000" />
<path
d="m 34.024935,25.554285 c -0.314352,0.05059 -0.634101,0.08432 -0.961945,0.08432 h -5.396608 c -0.945755,0 -1.838894,-0.225308 -2.638941,-0.615213 -1.225029,-0.597 -2.220029,-1.591999 -2.817029,-2.817029 -0.268481,-0.550454 -0.454664,-1.14543 -0.545732,-1.772111 -0.23003,0.172017 -0.453989,0.355501 -0.662433,0.563945 -0.208444,0.208444 -0.391929,0.432404 -0.563946,0.662434 -0.378437,0.507281 -0.66783,1.059759 -0.86683,1.638545 -0.443871,1.28844 -0.443871,2.695605 0,3.984045 0.290068,0.841196 0.762271,1.632474 1.430776,2.300979 l 3.816076,3.816076 c 0.232054,0.232054 0.481647,0.434427 0.74001,0.62061 2.36911,1.710724 5.717031,1.508351 7.845992,-0.62061 2.128962,-2.128962 2.332009,-5.476882 0.62061,-7.845993 z"
id="path17"
inkscape:connector-curvature="0"
style="fill:#000000" />
<path
d="M 19.571471,11.851624 C 19.281404,11.010428 18.8092,10.219151 18.140696,9.550646 L 14.32462,5.7338954 C 14.092566,5.5018412 13.842973,5.2994685 13.58461,5.1132855 11.215499,3.402561 7.867579,3.6049337 5.7386174,5.7338954 3.6096558,7.862857 3.407283,11.209428 5.117333,13.578539 c 0.311654,-0.04924 0.6287047,-0.0823 0.9538503,-0.0823 h 5.3966077 c 3.04571,0 5.579417,2.275344 6.002376,5.209075 0.0027,-0.002 0.0054,-0.0034 0.0081,-0.0054 0.230031,-0.172017 0.45399,-0.355501 0.662434,-0.563945 0.208444,-0.208444 0.391928,-0.432403 0.563945,-0.662434 0.378437,-0.507281 0.66783,-1.059759 0.86683,-1.638545 0.443871,-1.28844 0.443871,-2.695605 0,-3.983371 z"
id="path19"
inkscape:connector-curvature="0"
style="fill:#000000" />
<path
d="m 18.140696,20.998199 c -0.208444,-0.208444 -0.432403,-0.391928 -0.662434,-0.563945 -0.507281,-0.378437 -1.059759,-0.66783 -1.638545,-0.86683 -1.28844,-0.443871 -2.695605,-0.443871 -3.984045,0 -0.841196,0.290067 -1.632474,0.762271 -2.3009786,1.430775 l -3.816076,3.816076 c -0.2320541,0.232054 -0.4344269,0.481648 -0.6206099,0.74001 -1.7107245,2.369111 -1.5083517,5.717031 0.6206099,7.845993 2.1289616,2.128961 5.4768816,2.331334 7.8459926,0.62061 -0.05059,-0.314353 -0.08432,-0.634102 -0.08432,-0.961946 v -5.396607 c 0,-0.945755 0.225308,-1.838894 0.615213,-2.638941 0.597,-1.22503 1.591999,-2.220029 2.817029,-2.817029 0.550454,-0.268481 1.14543,-0.454664 1.772111,-0.545732 -0.172017,-0.23003 -0.355501,-0.45399 -0.563945,-0.662434 z"
id="path21"
inkscape:connector-curvature="0"
style="fill:#000000" />
</g>
<path
d="m 18.383795,24.289386 h 3.427493 c 3.228836,0 5.846325,-2.568194 5.846325,-5.736222 0,-3.168028 -2.617489,-5.736221 -5.846325,-5.736221 h -4.94689 c -1.86279,0 -3.372879,1.48165 -3.372879,3.309358 v 12.880464 z"
id="Path-6-Copy-2"
inkscape:connector-curvature="0"
style="fill:#000000" />
</g>
</g>
<path
style="opacity:0.980099;fill:#ffffff;stroke:#000000;stroke-width:0.260012;stroke-linecap:round;stroke-linejoin:bevel;paint-order:stroke fill markers"
d="m 13.547092,22.117195 c 3.53e-4,-5.628874 0.05887,-6.576542 0.455022,-7.369561 0.735291,-1.471888 1.766532,-1.819449 5.394852,-1.818232 3.800849,0.0013 4.797346,0.255913 6.253256,1.597924 2.90454,2.677312 2.299346,7.146691 -1.20413,8.892547 -1.189187,0.592597 -1.709598,0.688206 -3.745979,0.688206 h -2.364929 l -1.159189,1.191561 c -0.637554,0.655358 -1.714966,1.660801 -2.394248,2.234317 l -1.235059,1.042756 z"
id="path930" />
</svg>

+ 0
- 151
templates/assets/img/pixelfed_white.svg View File

@ -1,151 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="39.134174"
height="39.12608"
viewBox="0 0 39.134174 39.12608"
version="1.1"
id="svg29"
sodipodi:docname="pixelfed_white.svg"
inkscape:version="1.0.1 (0767f8302a, 2020-10-17)">
<metadata
id="metadata33">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>04/full/color/svg/pixelfed-full-color</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1368"
inkscape:window-height="836"
id="namedview31"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="3.6303635"
inkscape:cx="14.716744"
inkscape:cy="14.87764"
inkscape:window-x="72"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg29"
inkscape:document-rotation="0" />
<!-- Generator: Sketch 50.2 (55047) - http://www.bohemiancoding.com/sketch -->
<title
id="title2">04/full/color/svg/pixelfed-full-color</title>
<desc
id="desc4">Created with Sketch.</desc>
<defs
id="defs6" />
<g
id="photos"
transform="translate(-0.048611,-0.181307)"
style="fill:#000000;fill-rule:nonzero;stroke:none;stroke-width:1">
<g
id="Group-3"
style="fill:#000000">
<g
id="Group-2"
style="fill:#000000">
<path
d="m 17.470167,18.705316 c 0.04048,0.282647 0.06881,0.568667 0.06881,0.862108 0,3.339151 -2.732032,6.071183 -6.071183,6.071183 H 6.0711833 C 2.7320325,25.638607 0,22.906575 0,19.567424 c 0,-3.014005 2.2281243,-5.526126 5.117333,-5.987536 0,0 6.745e-4,6.74e-4 6.745e-4,6.74e-4 0,-6.74e-4 -6.745e-4,-0.0013 -6.745e-4,-0.0013 0.311654,-0.04992 0.6287047,-0.08297 0.9538503,-0.08297 h 5.3966077 c 3.04571,0 5.579417,2.275344 6.002376,5.209075 z"
id="Combined-Shape"
inkscape:connector-curvature="0"
style="fill:#000000" />
<path
d="M 25.558333,5.1132855 C 25.092875,2.2281243 22.582778,0.00404746 19.571471,0.00404746 c -3.011307,0 -5.521404,2.22407684 -5.986861,5.10923804 0.258363,0.186183 0.507956,0.3885557 0.74001,0.6206099 l 3.816076,3.816076 c 0.668504,0.6685046 1.141382,1.4597826 1.430775,2.3009786 0.443871,1.28844 0.443871,2.695605 0,3.984045 -0.199674,0.578786 -0.488393,1.131264 -0.86683,1.638545 0.283997,0.04115 0.572041,0.07016 0.86683,0.07016 0.29479,0 0.582834,-0.02833 0.86683,-0.07016 0.626681,-0.09107 1.221657,-0.277251 1.772111,-0.545732 1.22503,-0.596999 2.22003,-1.591999 2.817029,-2.817029 0.389905,-0.800047 0.615214,-1.693185 0.615214,-2.638941 V 6.0752308 c 0,-0.3278439 -0.03373,-0.6475929 -0.08432,-0.9619453 z"
id="Shape"
inkscape:connector-curvature="0"
style="fill:#000000" />
<path
d="m 24.818323,33.400278 -3.816076,-3.816076 c -0.668505,-0.668505 -1.141383,-1.459783 -1.430776,-2.300979 -0.443871,-1.28844 -0.443871,-2.695605 0,-3.984045 0.199675,-0.578786 0.488393,-1.131264 0.86683,-1.638545 -0.283996,-0.04115 -0.57204,-0.07016 -0.86683,-0.07016 -0.294789,0 -0.582833,0.02833 -0.86683,0.07016 -0.626681,0.09107 -1.221657,0.277251 -1.772111,0.545732 -1.22503,0.597 -2.220029,1.591999 -2.817029,2.817029 -0.389905,0.800047 -0.615213,1.693186 -0.615213,2.638941 v 5.396607 c 0,0.327844 0.03373,0.647593 0.08432,0.961946 0.465457,2.885161 2.975554,5.109238 5.986861,5.109238 3.011307,0 5.521404,-2.224077 5.986862,-5.109238 -0.258363,-0.186858 -0.507956,-0.389231 -0.74001,-0.62061 z"
id="path11"
inkscape:connector-curvature="0"
style="fill:#000000" />
<path
d="m 34.024935,13.580562 c -0.186183,0.258363 -0.388556,0.507956 -0.62061,0.74001 l -3.816076,3.816076 c -0.668505,0.668505 -1.459782,1.140708 -2.300978,1.430776 -1.28844,0.443871 -2.695606,0.443871 -3.984046,0 -0.578786,-0.199675 -1.131264,-0.488393 -1.638545,-0.86683 -0.04115,0.283996 -0.06948,0.57204 -0.06948,0.86683 0,0.294789 0.02833,0.582833 0.06948,0.86683 0.09107,0.626681 0.277251,1.221657 0.545732,1.772111 0.597,1.22503 1.592,2.220029 2.817029,2.817029 0.800047,0.389905 1.693186,0.615213 2.638941,0.615213 h 5.396608 c 0.327844,0 0.647593,-0.03373 0.961945,-0.08432 2.885161,-0.465457 5.109238,-2.975554 5.109238,-5.986861 0,-3.011307 -2.224077,-5.522079 -5.109238,-5.986862 z"
id="path13"
inkscape:connector-curvature="0"
style="fill:#000000" />
<path
d="M 33.404325,5.7338954 C 31.275364,3.6049337 27.927443,3.402561 25.558333,5.1132855 c 0.05059,0.3143524 0.08432,0.6341014 0.08432,0.9619453 v 5.3966072 c 0,0.945756 -0.225309,1.838894 -0.615214,2.638941 -0.596999,1.22503 -1.591999,2.22003 -2.817029,2.817029 -0.550454,0.268481 -1.14543,0.454664 -1.772111,0.545732 0.172017,0.230031 0.355502,0.45399 0.563946,0.662434 0.208444,0.208444 0.432403,0.391928 0.662433,0.563945 0.507281,0.378437 1.059759,0.66783 1.638545,0.86683 1.28844,0.443871 2.695606,0.443871 3.984046,0 0.841196,-0.290067 1.632473,-0.762271 2.300978,-1.430775 l 3.816076,-3.816076 c 0.232054,-0.232054 0.434427,-0.481648 0.62061,-0.74001 1.711399,-2.369111 1.508352,-5.7163564 -0.62061,-7.8459926 z"
id="path15"
inkscape:connector-curvature="0"
style="fill:#000000" />
<path
d="m 34.024935,25.554285 c -0.314352,0.05059 -0.634101,0.08432 -0.961945,0.08432 h -5.396608 c -0.945755,0 -1.838894,-0.225308 -2.638941,-0.615213 -1.225029,-0.597 -2.220029,-1.591999 -2.817029,-2.817029 -0.268481,-0.550454 -0.454664,-1.14543 -0.545732,-1.772111 -0.23003,0.172017 -0.453989,0.355501 -0.662433,0.563945 -0.208444,0.208444 -0.391929,0.432404 -0.563946,0.662434 -0.378437,0.507281 -0.66783,1.059759 -0.86683,1.638545 -0.443871,1.28844 -0.443871,2.695605 0,3.984045 0.290068,0.841196 0.762271,1.632474 1.430776,2.300979 l 3.816076,3.816076 c 0.232054,0.232054 0.481647,0.434427 0.74001,0.62061 2.36911,1.710724 5.717031,1.508351 7.845992,-0.62061 2.128962,-2.128962 2.332009,-5.476882 0.62061,-7.845993 z"
id="path17"
inkscape:connector-curvature="0"
style="fill:#000000" />
<path
d="M 19.571471,11.851624 C 19.281404,11.010428 18.8092,10.219151 18.140696,9.550646 L 14.32462,5.7338954 C 14.092566,5.5018412 13.842973,5.2994685 13.58461,5.1132855 11.215499,3.402561 7.867579,3.6049337 5.7386174,5.7338954 3.6096558,7.862857 3.407283,11.209428 5.117333,13.578539 c 0.311654,-0.04924 0.6287047,-0.0823 0.9538503,-0.0823 h 5.3966077 c 3.04571,0 5.579417,2.275344 6.002376,5.209075 0.0027,-0.002 0.0054,-0.0034 0.0081,-0.0054 0.230031,-0.172017 0.45399,-0.355501 0.662434,-0.563945 0.208444,-0.208444 0.391928,-0.432403 0.563945,-0.662434 0.378437,-0.507281 0.66783,-1.059759 0.86683,-1.638545 0.443871,-1.28844 0.443871,-2.695605 0,-3.983371 z"
id="path19"
inkscape:connector-curvature="0"
style="fill:#000000" />
<path
d="m 18.140696,20.998199 c -0.208444,-0.208444 -0.432403,-0.391928 -0.662434,-0.563945 -0.507281,-0.378437 -1.059759,-0.66783 -1.638545,-0.86683 -1.28844,-0.443871 -2.695605,-0.443871 -3.984045,0 -0.841196,0.290067 -1.632474,0.762271 -2.3009786,1.430775 l -3.816076,3.816076 c -0.2320541,0.232054 -0.4344269,0.481648 -0.6206099,0.74001 -1.7107245,2.369111 -1.5083517,5.717031 0.6206099,7.845993 2.1289616,2.128961 5.4768816,2.331334 7.8459926,0.62061 -0.05059,-0.314353 -0.08432,-0.634102 -0.08432,-0.961946 v -5.396607 c 0,-0.945755 0.225308,-1.838894 0.615213,-2.638941 0.597,-1.22503 1.591999,-2.220029 2.817029,-2.817029 0.550454,-0.268481 1.14543,-0.454664 1.772111,-0.545732 -0.172017,-0.23003 -0.355501,-0.45399 -0.563945,-0.662434 z"
id="path21"
inkscape:connector-curvature="0"
style="fill:#000000" />
</g>
<path
d="m 18.383795,24.289386 h 3.427493 c 3.228836,0 5.846325,-2.568194 5.846325,-5.736222 0,-3.168028 -2.617489,-5.736221 -5.846325,-5.736221 h -4.94689 c -1.86279,0 -3.372879,1.48165 -3.372879,3.309358 v 12.880464 z"
id="Path-6-Copy-2"
inkscape:connector-curvature="0"
style="fill:#000000" />
</g>
</g>
<path
style="opacity:0.980099;fill:#000000;stroke:#000000;stroke-width:0.262077;stroke-linecap:round;stroke-linejoin:bevel;paint-order:stroke fill markers"
d="m 13.418826,22.099004 c 3.59e-4,-5.617099 0.05993,-6.562782 0.463249,-7.354134 0.748584,-1.468807 1.798469,-1.815648 5.492387,-1.814436 3.869566,0.0013 4.884079,0.255367 6.36631,1.594656 2.957053,2.671708 2.340916,7.131726 -1.225899,8.873929 -1.210687,0.591368 -1.740507,0.686815 -3.813704,0.686815 h -2.407686 l -1.180146,1.189131 c -0.64908,0.653989 -1.745971,1.657277 -2.437534,2.229656 l -1.257388,1.040389 z"
id="path930" />
<path
style="opacity:0.980099;fill:#ffffff;stroke:#000000;stroke-width:0.275455;stroke-linecap:round;stroke-linejoin:bevel;paint-order:stroke fill markers"
d="M 26.731192,34.288176 C 25.300436,33.639001 21.147636,29.683737 20.19072,28.058814 19.820684,27.43046 19.44302,26.283881 19.351467,25.510859 l -0.16646,-1.405493 h 2.089701 c 1.700007,0 2.331226,0.128419 3.384849,0.688636 1.208758,0.642704 1.55972,0.688637 5.261678,0.688637 h 3.966532 l 0.531392,1.170681 c 1.305332,2.875708 0.04951,6.174872 -2.867454,7.533087 -1.713294,0.797753 -3.216639,0.829491 -4.820513,0.101769 z"
id="path1575" />
<path
style="opacity:0.980099;fill:#ffffff;stroke:#000000;stroke-width:0.275455;stroke-linecap:round;stroke-linejoin:bevel;paint-order:stroke fill markers"
d="m 25.046288,24.622938 c -1.145577,-0.528773 -1.197782,-0.59618 -0.688636,-0.889177 1.095355,-0.630343 2.842364,-2.630459 3.025372,-3.463689 0.102923,-0.468608 0.455956,-0.988533 0.784517,-1.155389 0.32856,-0.166856 1.793732,-1.483849 3.255937,-2.926651 2.973474,-2.934018 3.061645,-2.959601 5.103191,-1.480713 1.424776,1.032102 2.292344,2.790681 2.292344,4.646629 0,1.752361 -0.273193,2.487766 -1.401604,3.772955 -1.612047,1.836021 -2.445869,2.08108 -7.057648,2.074232 -3.534809,-0.0053 -4.237962,-0.08176 -5.313473,-0.578197 z"
id="path1577" />
<path
style="opacity:0.980099;fill:#ffffff;stroke:#000000;stroke-width:0.275455;stroke-linecap:round;stroke-linejoin:bevel;paint-order:stroke fill markers"
d="m 27.525379,18.210717 c 0,-1.254292 -0.341164,-2.103827 -1.298583,-3.233613 l -0.784578,-0.925828 0.146353,-4.5449989 0.146353,-4.5449994 0.964091,-0.4816173 c 2.07215,-1.035155 5.192737,-0.3513443 6.732909,1.475375 1.706683,2.0242092 1.983717,4.1867666 0.832335,6.4972906 -0.681138,1.366865 -4.843425,5.699825 -6.14388,6.395807 -0.556564,0.297864 -0.595,0.256688 -0.595,-0.637416 z"
id="path1579" />
<path
style="opacity:0.980099;fill:#ffffff;stroke:#000000;stroke-width:0.275455;stroke-linecap:round;stroke-linejoin:bevel;paint-order:stroke fill markers"
d="m 23.669015,13.207596 c -0.530249,-0.200624 -1.589143,-0.371767 -2.353096,-0.380318 l -1.389005,-0.01555 -0.334672,-1.2513 C 19.321626,10.548628 18.730947,9.7709861 16.50612,7.4974775 14.992822,5.9510676 13.754216,4.5551479 13.753661,4.3954338 13.753107,4.2357195 14.114898,3.533843 14.557642,2.835708 c 2.319175,-3.65695844 7.500395,-3.73730643 9.875041,-0.1531376 0.717738,1.0833157 0.755357,1.3127559 0.841348,5.1313415 0.0883,3.9210971 -0.06103,5.8566351 -0.446816,5.7913181 -0.10676,-0.01808 -0.62795,-0.197011 -1.1582,-0.397634 z"
id="path1581" />
<path
style="opacity:0.980099;fill:#ffffff;stroke:#000000;stroke-width:0.275455;stroke-linecap:round;stroke-linejoin:bevel;paint-order:stroke fill markers"
d="M 13.614926,13.568169 C 13.280765,13.368836 11.472607,13.197932 9.0191355,13.133782 L 4.9742539,13.028022 4.5429997,11.950212 C 2.6522073,7.2246563 7.56278,2.4393297 12.28017,4.4103811 c 1.20495,0.5034601 5.383119,4.4970604 6.468523,6.1827789 1.225303,1.902992 1.117241,2.121026 -1.130941,2.281883 -1.097496,0.07853 -2.213927,0.330286 -2.607127,0.587921 -0.805688,0.527907 -0.70039,0.51997 -1.395699,0.105205 z"
id="path1583" />
<path
style="opacity:0.980099;fill:#ffffff;stroke:#000000;stroke-width:0.275455;stroke-linecap:round;stroke-linejoin:bevel;paint-order:stroke fill markers"
d="M 8.0339089,34.480396 C 4.8038188,33.308939 3.1605443,29.393031 4.6626545,26.446729 c 0.3029999,-0.594316 0.550909,-1.096723 0.550909,-1.116459 0,-0.01974 -0.4816132,-0.180179 -1.0702515,-0.356539 -0.5886383,-0.17636 -1.5734705,-0.809013 -2.1885164,-1.405895 -2.95158443,-2.864415 -2.22677622,-7.531733 1.4683136,-9.455035 1.3803075,-0.718453 6.8062148,-1.009873 9.1280888,-0.490261 1.593889,0.356697 1.602911,0.368222 1.219877,1.558314 -0.141369,0.439232 -0.324078,4.827126 -0.40602,9.750876 l -0.148987,8.952271 -1.040116,0.474822 c -1.193598,0.544887 -2.841466,0.593254 -4.1420431,0.121573 z"
id="path1585" />
<path
style="opacity:0.980099;fill:#ffffff;stroke:#000000;stroke-width:0.275455;stroke-linecap:round;stroke-linejoin:bevel;paint-order:stroke fill markers"
d="M 17.186478,38.318809 C 16.057244,37.826858 14.590782,36.3181 14.088881,35.131871 13.862592,34.597042 13.615143,33.006017 13.538993,31.596257 l -0.138455,-2.563197 2.557927,-2.394984 c 1.40686,-1.31724 2.663653,-2.436301 2.792875,-2.486801 0.129222,-0.0505 0.234949,0.270675 0.234949,0.713722 0,2.140915 0.712222,3.385976 3.587006,6.270578 2.456312,2.4647 2.761522,2.87588 2.603133,3.506952 -0.257389,1.025519 -1.939193,2.888139 -3.178762,3.52052 -1.237375,0.631261 -3.548007,0.706068 -4.811188,0.155762 z"
id="path1587" />
</svg>

BIN
templates/assets/img/replace.png View File

Before After
Width: 1401  |  Height: 1681  |  Size: 41 KiB

BIN
templates/assets/img/solar.JPG View File

Before After
Width: 2976  |  Height: 1984  |  Size: 1.1 MiB

BIN
templates/assets/img/spider_out.JPG View File

Before After
Width: 2976  |  Height: 1984  |  Size: 1.2 MiB

BIN
templates/assets/img/spider_outdoors.JPG View File

Before After
Width: 2976  |  Height: 1984  |  Size: 1.2 MiB

+ 0
- 2
templates/assets/jquery/jquery-3.5.1.min.js
File diff suppressed because it is too large
View File


+ 0
- 0
templates/assets/js/contact.js View File


+ 0
- 57
templates/automation.html View File

@ -1,57 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-eqiv="X-UA-Compatible" content="ie=edge"/>
<link rel="stylesheet" type="text/css" href="../css/nav.css">
<link rel="stylesheet" type="text/css" href="../css/footer.css">
<link rel="stylesheet" type="text/css" href="../css/global.css">
<link rel="stylesheet" type="text/css" href="../css/automation.css">
<link rel="icon" type=" image/webp" href="../img/Logo.svg">
<title>Cannabinieri - Automation</title>
<script src="../jquery/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
$('#top-nav').load("../components/top-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#main-nav').load("../components/main-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#footer').load("../components/footer.html");
});
</script>
<script>
$(document).ready(function(){
$('#content').load("../components/automation-content.html");
});
</script>
<script defer src="../js/main.js"></script>
</head>
<body>
<div class="global-wrapper">
<div id="top-nav"></div>
<div id="main-nav"></div>
<div id="content"></div>
<div id="footer"></div>
</div>
</body>
</html>

+ 0
- 63
templates/blog.html View File

@ -1,63 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-eqiv="X-UA-Compatible" content="ie=edge"/>
<link rel="stylesheet" type="text/css" href="../css/nav.css">
<link rel="stylesheet" type="text/css" href="../css/footer.css">
<link rel="stylesheet" type="text/css" href="../css/global.css">
<link rel="stylesheet" type="text/css" href="../css/blog.css">
<link rel="icon" type="image/svg+xml" href="../img/Logo.svg">
<title>Cannabinieri - Blog</title>
<script src="../jquery/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
$('#top-nav').load("../components/top-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#main-nav').load("../components/main-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#content').load("../components/blog-content.html");
});
</script>
<script>
$(document).ready(function(){
$('#content').load("../components/blog-content.html");
});
</script>
<script>
$(document).ready(function(){
$('#footer').load("../components/footer.html");
});
</script>
<script defer src="../js/main.js"></script>
</head>
<body>
<div class="global-wrapper">
<div id="top-nav"></div>
<div id="main-nav"></div>
<div id="content"></div>
<div id="footer"></div>
</div>
</body>
</html>

+ 0
- 56
templates/code.html View File

@ -1,56 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-eqiv="X-UA-Compatible" content="ie=edge"/>
<link rel="stylesheet" type="text/css" href="../css/nav.css">
<link rel="stylesheet" type="text/css" href="../css/footer.css">
<link rel="stylesheet" type="text/css" href="../css/global.css">
<link rel="stylesheet" type="text/css" href="../css/code.css">
<link rel="icon" type="image/svg+xml" href="../img/Logo.svg">
<title>Cannabinieri - Code</title>
<script src="../jquery/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
$('#top-nav').load("../components/top-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#main-nav').load("../components/main-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#content').load("../components/code-content.html");
});
</script>
<script>
$(document).ready(function(){
$('#footer').load("../components/footer.html");
});
</script>
<script defer src="../js/main.js"></script>
</head>
<body>
<div class="global-wrapper">
<div id="top-nav"></div>
<div id="main-nav"></div>
<div id ="content"></div>
<div id="footer"></div>
</div>
</body>
</html>

+ 44
- 0
templates/contact.html.tera View File

@ -0,0 +1,44 @@
{%extends "base"%}
{%block title %} Cannabinieri | {{ title[5] }} {%endblock title %}
{%block head%}
{{super()}}
<link rel="stylesheet" type="text/css" href="../css/contact.css" />
{%endblock head%}
{%block content%}
<div class ="container">
<div class="donation_container">
<h2>Unterstützt uns</h2>
<p>Spende an:<br> <span><b>IBAN:</b></span><br>
Gib als <span>Verwendungszweck</span> die <span>Node</span> an die du unterstützen möchtest !<br>
Nodes: <span>Hanf, PermApp, Spinne, Cube, Cyberpreneur, Offgrid </span></p>
</div>
<div class="form_container">
<div class="form_box">
<div class="left">
</div>
<div class="right">
<h2>Kontaktiert Uns</h2>
<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="Meine EMail*"required id="mail"/>
</div>
<div class="input-container">
<input type="tel" name="phone" class="input" placeholder="Telefonnummer (optional)" id="phone"/>
</div>
<div class="input-container">
<input type="subject" name="subject" class="input" placeholder="Betreff" id="subject" />
</div>
<div class="input-container textarea">
<textarea name="message" class="input" placeholder="Nachricht*" id="message" ></textarea>
</div>
<button class="btn" id="sub_btn">Submit</button>
</form>
</div>
</div>
</div>
</div>
{%endblock content%}

+ 33
- 0
templates/cube.html.tera View File

@ -0,0 +1,33 @@
{%extends "base"%}
{%block title %} Cannabinieri | {{ title[2] }} {%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/spider_out.JPG">
<h1>Kaos Cube</h1>
<p>Der Kaos Cube ist das Netzwerk, in dem sich die Spinne bewegt. Er spannt ein dezentrales und privates Netzwerk zwischen den Spinnen.
Der Cube ist ein Router über den mit Cryptocurrencies Internetverbindungen geteilt werden können. Die Antenne des Kaos Cubes fängt naheliegende Netzwerke ein. Jeder Kaos Cube Besitzer ist durch einen Ether Token in der Lage sein eigenes Inernet zu teilen.
Der Cube ist Teil der Spinne, da die große Menge an Umgebungsdaten, die die Spinne sammelt sicher und anonym bleiben müssen.
</p>
</div>
<div class ="content_container">
<img src="../img/o_pi.jpg">
<h1 id="tiny">Die physische Infrastruktur des Internets in den Händen des Nutzers</h1>
<p>
Mit dem Kaos Cube macht es möglich sichere Internet Verbindungen mit anderen teilen.
Der Ether Token lässt Contracts zu, mit denen jeder Nutzer einstellt, wie er die Kosten seiner Bandbreite auf andere verteilen möchte. Die Verschlüsselung des Kaos Cubes ist auf Cjdns aufgebaut. Das bedeutet, dass an Stelle von IPs öffentliche Schlüssel die "Identität" der Nutzer darstellen. Daher ist der gesamte Datenverkehr des Netzwerkes der Cubes standardmäßig Onion verschlüsselt. Das Prinzip von Tor, beziehungsweise das, was als Darknet bezeichnet wird.
</p>
<a href="spider/spiderpi">Mehr</a>
</div>
<div class ="content_container" id="withbutton">
<img src="../img/sample-permapp-screen.png">
<h1><span>Some</span>Thing</h1>
<p> Hier noch mehr über den cube. Mit Link</p>
<a href="#">Mehr</a>
</div>
</div>
{%endblock content%}

+ 39
- 0
templates/cyber.html.tera View File

@ -0,0 +1,39 @@
{%extends "base"%}
{%block title %} Cannabinieri | {{ title[3] }} {%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" id="adjust_padding">
<img src="../img/3d_greenhouse.png">
<h1 id="smaller_text">Cyberpreneur</h1>
<p>Wir wollen, dass alle unsere Kunden zum Unternehmer im Cyberspace werden.
Wir stellen unsere Roboter zur Verfügung um ihre Pflanzen für sie anzubauen.
Wie in einem Spiel können usere Kunden rund um die Uhr ihre Pflanzen sehen und mit einer der Spinnen kommunizieren.
Dadurch dass die Kunden uns oder unsere Roboter anstellen ihre Pflanzen anzubauen gehen die Transporte über die Kunden, die alle zu Kleinunternehmern gemacht werden und einer Cooperation beitreten, von der Fachanwälte sich um die Verteidigung der Kunden bei legalen Ausseinandersetzungen kümmern.
</p>
</div>
<div class ="content_container">
<img src="../img/img_greenhouse.JPG">
<h1>Tech</h1>
<p>Wir nutzen Photogrammetrie um unser Gewächshaus in in die virtuelle Realität zu bringen.
Auf dieser Website wird für registrierte Cyberpreneure ein von der Spinne produziertes virtuelles dreidimensionales und interaktives Abbild unseres Gewächshauses erscheinen.
Kunden können ihre Pflanzen rund um die Uhr sehen und Wünsche äussern, die später von der Spinne angenommen und beantwortet werden.
Cyberpreneure können, wie in einem Spiel ihre Pflanzen in allen Wachsumsphasen sehen, selbst eingreifen und letztendlich bestimmen wann die Blüten geerntet werden, wie sie verarbeitet werden und wann er sie zu sich gesant haben möchte.
</p>
</div>
<div class ="content_container">
<img src="../img/Canna17.JPG">
<h1>Recht</h1>
<p> Rechtlich bietet dieses Modell sowohl uns als Farmern als auch den Kunden als virtuellen Unternehmern viele Vorteile.
Die Einfuhr von CBD Blüten ist bis zum heutigen Zeitpunkt in Deutschland nur zu gewerblichen oder wissenschaftlichen Zwecken legal.
In unserem Modell ist jede Einfuhr zum gewerblichen Zweck, da sie über viele kleine Unternehmer, die alle Teil einer großen Coorporation sind, geht.
Dadurch geschieht jeder Import im Auftrag eines Unternhemers der das seine Eigentum anfordert.
Viele kleine Importe gehen über viele kleine Unternehmen. This text needs to be edited!!!!
</p>
</div>
</div>
{%endblock content%}

+ 0
- 56
templates/diy.html View File

@ -1,56 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-eqiv="X-UA-Compatible" content="ie=edge"/>
<link rel="stylesheet" type="text/css" href="../css/nav.css">
<link rel="stylesheet" type="text/css" href="../css/footer.css">
<link rel="stylesheet" type="text/css" href="../css/global.css">
<link rel="stylesheet" type="text/css" href="../css/diy.css">
<link rel="icon" type=" image/webp" href="../img/Logo.svg">
<title>Cannabinieri - DiY</title>
<script src="../jquery/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
$('#top-nav').load("../components/top-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#main-nav').load("../components/main-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#content').load("../components/diy-content.html");
});
</script>
<script>
$(document).ready(function(){
$('#footer').load("../components/footer.html");
});
</script>
<script defer src="../js/main.js"></script>
</head>
<body>
<div class="global-wrapper">
<div id="top-nav"></div>
<div id="main-nav"></div>
<div id ="content"></div>
<div id="footer"></div>
</div>
</body>
</html>

+ 0
- 54
templates/edibles.html View File

@ -1,54 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-eqiv="X-UA-Compatible" content="ie=edge"/>
<link rel="stylesheet" type="text/css" href="../css/nav.css">
<link rel="stylesheet" type="text/css" href="../css/footer.css">
<link rel="stylesheet" type="text/css" href="../css/global.css">
<link rel="stylesheet" type="text/css" href="../css/edibles.css">
<link rel="icon" href="global/img/Logo.svg">
<title>Cannabinieri - Edibles</title>
<script src="../jquery/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
$('#top-nav').load("../components/top-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#main-nav').load("../components/main-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#content').load("../components/edibles-content.html");
});
</script>
<script>
$(document).ready(function(){
$('#footer').load("../components/footer.html");
});
</script>
<script defer src="../js/main.js"></script>
</head>
<body>
<div class="global-wrapper">
<div id="top-nav"></div>
<div id="main-nav"></div>
<div id="content"></div>
<div id="footer"></div>
</div>
</body>
</html>

+ 0
- 55
templates/flower.html View File

@ -1,55 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>Cannabinieri - Flower</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-eqiv="X-UA-Compatible" content="ie=edge"/>
<link rel="stylesheet" type="text/css" href="../css/nav.css">
<link rel="stylesheet" type="text/css" href="../css/footer.css">
<link rel="stylesheet" type="text/css" href="../css/global.css">
<link rel="stylesheet" type="text/css" href="../css/flower.css">
<link rel="icon" href="../img/Logo.svg">
<script src="../jquery/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
$('#top-nav').load("../components/top-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#main-nav').load("../components/main-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#content').load("../components/flower-content.html");
});
</script>
<script>
$(document).ready(function(){
$('#footer').load("../components/footer.html");
});
</script>
<script src="../js/main.js" defer></script>
</head>
<body>
<div class="global-wrapper">
<div id="top-nav"></div>
<div id="main-nav"></div>
<div id="content"></div>
<div id="footer"></div>
</div>
</body>
</html>

+ 1
- 1
templates/footer.html.tera View File

@ -1,7 +1,7 @@
<footer>
<div class="footer_container">
<h6><a href="/about">Über Cannabinieri</a></h6>
<h6><a href="/meet">Kontakt</a></h6>
<h6><a href="/contact">Kontakt</a></h6>
<h6><a href="/privacy">Datenschutz</a></h6>
<h6><a href="https:://code.basabuuka.org">Code</a></h6>
<p>© Cannabinieri 2021-CC BY-NC 4.0</p>

+ 0
- 54
templates/greenlab.html View File

@ -1,54 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>Cannabinieri - GreenLab</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-eqiv="X-UA-Compatible" content="ie=edge"/>
<link rel="stylesheet" type="text/css" href="../css/nav.css">
<link rel="stylesheet" type="text/css" href="../css/footer.css">
<link rel="stylesheet" type="text/css" href="../css/global.css">
<link rel="stylesheet" type="text/css" href="../css/greenlab.css">
<link rel="icon" href="../img/Logo.svg">
<script src="../jquery/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
$('#top-nav').load("../components/top-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#main-nav').load("../components/main-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#content').load("../components/greenlab-content.html");
});
</script>
<script>
$(document).ready(function(){
$('#footer').load("../components/footer.html");
});
</script>
<script defer src="../js/main.js"></script>
</head>
<body>
<div class="global-wrapper">
<div id="top-nav"></div>
<div id="main-nav"></div>
<div id="content"></div>
<div id="footer"></div>
</div>
</body>
</html>

+ 0
- 54
templates/greentech.html View File

@ -1,54 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>Cannabinieri - GreenTech</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-eqiv="X-UA-Compatible" content="ie=edge"/>
<link rel="stylesheet" type="text/css" href="css/nav.css">
<link rel="stylesheet" type="text/css" href="css/footer.css">
<link rel="stylesheet" type="text/css" href="css/global.css">
<link rel="stylesheet" type="text/css" href="css/greentech.css">
<link rel="icon" type="image/webp" href="img/Logo.svg">
<script type="text/javascript" src="jquery/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
//check MIME type before loading
$('#top-nav').load("components/top-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#main-nav').load("components/main-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#content').load("components/greentech-content.html");
});
</script>
<script>
$(document).ready(function(){
$('#footer').load("components/footer.html");
});
</script>
<script type="text/javascript" src="js/main.js"></script>
</head>
<body>
<div class="global-wrapper">
<div id="top-nav"></div>
<div id="main-nav"></div>
<div id="content"></div>
<div id="footer"></div>
</div>
</body>
</html>

+ 1
- 1
templates/hemp.html.tera View File

@ -1,5 +1,5 @@
{%extends "base"%}
{%block title %} {{ title[0] }} {%endblock title %}
{%block title %} Cannabinieri | {{ title[0] }} {%endblock title %}
{%block head%}
{{super()}}
<link rel="stylesheet" type="text/css" href="../css/pages.css" />

+ 6
- 3
templates/index_de.html.tera View File

@ -1,11 +1,14 @@
{%extends "base"%}
{%block title %}Cannabinieri CBD{%endblock title %}
{%block title %}Cannabinieri | Home {%endblock title %}
{%block head%}
{{super()}}
<link rel="stylesheet" type="text/css" href="css/index.css" />
{%endblock head%}
{{super()}}
{%block content%}
<div class="banner">
<h6><a href="/contact">Spende €20</a> für eine Node und erhalte eines unserer ersten CBD Öle !</h6>
</div>
<div class="container">
<div class="height">
<div class="link" id="hemp">
@ -13,7 +16,7 @@
<a>i</a>
</button>
<div class ="sub_container" id="c_1">
<p>{{ hemp["de"] }}<br><b>Hanf </b>ist unglaublich vielseitig.<br> Deshalb bauen wir ihn an. <br>Konsequent biologisch.</p>
<p>{{ hemp["de"] }}<br><b><a href="/hemp">Hanf</a></b>ist unglaublich vielseitig.<br> Deshalb bauen wir ihn an. <br>Konsequent biologisch.</p>
</div>
</div>
<div class="link" id="permapp">
@ -21,7 +24,7 @@
<a>i</a>
</button>
<div class ="sub_container" id="c_2">
<p> Die <b>PermApp</b> ist das Informations Netz der Spinnen.<br> Informationen für eine skalierbare Alternative zur heutigen Monokultur.<br> Bevor es zu spät ist.</p>
<p> Die <b><a href="/spider/permapp">PermApp</a></b> ist das Informations Netz der Spinnen.<br> Informationen für eine skalierbare Alternative zur heutigen Monokultur.<br> Bevor es zu spät ist.</p>
</div>
</div>
<div class="link" id="spider">

+ 0
- 11
templates/index_de_test.html.tera View File

@ -1,11 +0,0 @@
{%extends "base"%}
{%block title %}Cannabinieri CBD{%endblock title %}
{%block head%}
{{super()}}
<link rel="stylesheet" type="text/css" href="../css/test.css" />
{%endblock head%}
{%block content%}
<div class = "container">
<img type="image/svg+xml" src="img/hero.png">
</div>
{%endblock content%}

+ 0
- 54
templates/iot.html View File

@ -1,54 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>Cannabinieri - IoT</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-eqiv="X-UA-Compatible" content="ie=edge"/>
<link rel="stylesheet" type="text/css" href="../css/nav.css">
<link rel="stylesheet" type="text/css" href="../css/footer.css">
<link rel="stylesheet" type="text/css" href="../css/global.css">
<link rel="stylesheet" type="text/css" href="../css/iot.css">
<link rel="icon" type=" image/webp" href="../img/Logo.svg">
<script src="../jquery/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
$('#top-nav').load("../components/top-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#main-nav').load("../components/main-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#content').load("../components/iot-content.html");
});
</script>
<script>
$(document).ready(function(){
$('#footer').load("../components/footer.html");
});
</script>
<script defer src="../js/main.js"></script>
</head>
<body>
<div class="global-wrapper">
<div id="top-nav"></div>
<div id="main-nav"></div>
<div id ="content"></div>
<div id="footer"></div>
</div>
</body>
</html>

+ 0
- 54
templates/join.html View File

@ -1,54 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>Cannabinieri - Join</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-eqiv="X-UA-Compatible" content="ie=edge"/>
<link rel="stylesheet" type="text/css" href="../css/nav.css">
<link rel="stylesheet" type="text/css" href="../css/footer.css">
<link rel="stylesheet" type="text/css" href="../css/global.css">
<link rel="stylesheet" type="text/css" href="../css/join.css">
<link rel="icon" type=" image/webp" href="../img/Logo.svg">
<script src="../jquery/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
$('#top-nav').load("../components/top-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#main-nav').load("../components/main-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#content').load("../components/join-content.html");
});
</script>
<script>
$(document).ready(function(){
$('#footer').load("../components/footer.html");
});
</script>
<script defer src="../js/main.js"></script>
</head>
<body>
<div class="global-wrapper">
<div id="top-nav"></div>
<div id="main-nav"></div>
<div id="content"></div>
<div id="footer"></div>
</div>
</body>
</html>

+ 0
- 55
templates/learn.html View File

@ -1,55 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>Cannabinieri - Learn</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-eqiv="X-UA-Compatible" content="ie=edge"/>
<link rel="stylesheet" type="text/css" href="css/nav.css">
<link rel="stylesheet" type="text/css" href="css/footer.css">
<link rel="stylesheet" type="text/css" href="css/global.css">
<link rel="stylesheet" type="text/css" href="css/learn.css">
<link rel="icon" type="image/webp" href="img/Logo.svg">
<script type="text/javascript" src="jquery/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
// Add dunction to check MIME type before load
$('#top-nav').load("components/top-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#main-nav').load("components/main-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#content').load("components/learn-content.html");
});
</script>
<script>
$(document).ready(function(){
$('#footer').load("components/footer.html");
});
</script>
<script type="text/javascript" src="js/main.js"></script>
</head>
<body>
<div class="global-wrapper">
<div id="top-nav"></div>
<div id="main-nav"></div>
<div id="content"></div>
<div id="footer"></div>
</div>
</body>
</html>

+ 0
- 57
templates/meet.html View File

@ -1,57 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>Cannabinieri - Meet</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-eqiv="X-UA-Compatible" content="ie=edge"/>
<link rel="stylesheet" type="text/css" href="../css/nav.css">
<link rel="stylesheet" type="text/css" href="../css/footer.css">
<link rel="stylesheet" type="text/css" href="../css/global.css">
<link rel="stylesheet" type="text/css" href="../css/meet.css">
<link rel="icon" type=" image/webp" href="../img/Logo.svg">
<script src="../jquery/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
$('#top-nav').load("../components/top-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#main-nav').load("../components/main-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#content').load("../components/meet-content.html");
});
</script>
<script>
$(document).ready(function(){
$('#footer').load("../components/footer.html");
});
</script>
<script defer src="../js/main.js"></script>
</head>
<body>
<div class="global-wrapper">
<div id="top-nav"></div>
<div id="main-nav"></div>
<div id="content"></div>
<div id="footer"></div>
</div>
<!--Handle Form with Rocket !
<script defer src="../js/contact.js"></script>
-->
</body>
</html>

+ 42
- 0
templates/miner.html.tera View File

@ -0,0 +1,42 @@
{%extends "base"%}
{%block title %} Cannabinieri | {{ title[4] }} {%endblock title %}
{%block head%}
{{super()}}
<link rel="stylesheet" type="text/css" href="../css/pages.css" />
<link rel="stylesheet" type="text/css" href="../../css/base.css" />
<link rel="stylesheet" type="text/css" href="../../css/navigation.css" />
<link rel="stylesheet" type="text/css" href="../../css/footer.css" />
{%endblock head%}
{%block content%}
<div class ="container">
<div class ="content_container" id="adjust_padding">
<img src="../img/bootA.JPG">
<h1>GPU Miner</h1>
<p>
Jede Solaranlage hat Probleme mit der Überproduktion von Strom. Sobald die Recycling Stromspeicher voll sind, geht Energie verloren. Diese Energie nutzen wir zum verifizieren von Transaktionen. Transaktionen von Krypto Währungen. Dabei sehen wir vor allem Monero und Etherium als nützlich an. Etherium Token sind einfach zu Coden. ETH Token als Bestandteil des KaosCubes um mit Contracts den automatischen Tausch von Währung gegen Bandbreite zu gewährleisten. Auch der geringe Ressourcen Verbrauch durch Proof of Stake ist dabei ein Argument für diese Währung.
Monero wird die Grundlage eines sicheren Transaktionssystems innerhalb der Kooperativen. Zusätzlich ist der Mining Algorithmus so aufgebaut, dass er Unrentabilität für große Mining Farmen verspricht.
</p>
</div>
<div class ="content_container">
<img src="../img/img_greenhouse.JPG">
<h1>Projekte</h1>
<p>Wir nutzen Photogrammetrie um unser Gewächshaus in in die virtuelle Realität zu bringen.
Auf dieser Website wird für registrierte Cyberpreneure ein von der Spinne produziertes virtuelles dreidimensionales und interaktives Abbild unseres Gewächshauses erscheinen.
Kunden können ihre Pflanzen rund um die Uhr sehen und Wünsche äussern, die später von der Spinne angenommen und beantwortet werden.
Cyberpreneure können, wie in einem Spiel ihre Pflanzen in allen Wachsumsphasen sehen, selbst eingreifen und letztendlich bestimmen wann die Blüten geerntet werden, wie sie verarbeitet werden und wann er sie zu sich gesant haben möchte.
</p>
</div>
<div class ="content_container">
<img src="../img/Canna17.JPG">
<h1>Unser Gewächshaus</h1>
<p> Rechtlich bietet dieses Modell sowohl uns als Farmern als auch den Kunden als virtuellen Unternehmern viele Vorteile.
Die Einfuhr von CBD Blüten ist bis zum heutigen Zeitpunkt in Deutschland nur zu gewerblichen oder wissenschaftlichen Zwecken legal.
In unserem Modell ist jede Einfuhr zum gewerblichen Zweck, da sie über viele kleine Unternehmer, die alle Teil einer großen Coorporation sind, geht.
Dadurch geschieht jeder Import im Auftrag eines Unternhemers der das seine Eigentum anfordert.
Viele kleine Importe gehen über viele kleine Unternehmen. This text needs to be edited!!!!
</p>
</div>
</div>
<script type="text/javascript" src="../js/main.js"></script>
{%endblock content%}

+ 8
- 8
templates/nav.html.tera View File

@ -42,16 +42,16 @@
</span>
<ul class="down" id ="down_2">
<li><a type="text/html" href="/spider/spiderPi">SpiderPi</a></li>
<li><a href="/peramapp">PermApp</a></li>
<li><a href="spider/permapp">PermApp</a></li>
</ul>
</li>
</ul>
<ul>
<li><a type="text/html" href=/permaculture/permApp>KAOS CUBE</a>
<li><a type="text/html" href=/kaoscube>KAOS CUBE</a>
</li>
</ul>
<ul id="drop_up">
<li><a type="text/html" href="#">OFFGRID</a>
<li><a type="text/html" href="/offgrid">OFFGRID</a>
<span class="drop">
<svg type="image/svg+xml" id="chevron_3" class="chevron" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width=".75" d="M19 9l-7 7-7-7"></path>
@ -59,12 +59,12 @@
</span>
<ul class="down" id="down_3">
<li><a type="text/html" href="#">WohnMaschine</a></li>
<li><a type="text/html" href="#">GPUMiner</a></li>
<li><a type="text/html" href="/offgrid/miner">GPUMiner</a></li>
</ul>
</li>
</ul>
<ul>
<li><a type="text/html" href="#">CYBERPRENEUR</a>
<li><a type="text/html" href="/cyberpreneur">CYBERPRENEUR</a>
</li>
</ul>
</div>
@ -82,17 +82,17 @@
<ul>
<li><a type="text/html" href="/spider">SPINNE</a>
<ul>
<li id="fix"><a id="fix" type="text/html" href="/permapp">PermApp</a></li>
<li id="fix"><a id="fix" type="text/html" href="spider/permapp">PermApp</a></li>
</ul>
</ul>
<ul>
<li><a type="text/html" href="/permaculture/permApp">KAOS CUBE</a>
<li><a type="text/html" href="/kaoscube">KAOS CUBE</a>
</ul>
<ul>
<li><a type="text/html" href="#">CYBERPRENEUR</a>
</ul>
<ul>
<li><a type="text/html" href="#">OFFGRID</a>
<li><a type="text/html" href="/offgrid">OFFGRID</a>
<ul id="broader">
<li id="fix" ><a id="fix" href="#">Wohn Maschine</a></li>
<li id="fix"><a id="fix" href="#">GPU Miner</a></li>

+ 38
- 0
templates/offgrid.html.tera View File

@ -0,0 +1,38 @@
{%extends "base"%}
{%block title %} Cannabinieri | {{ title[4] }} {%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/bootA.JPG">
<h1>Off-Grid</h1>
<p>Wir möchten unabhängige und nachhaltige Systeme kreieren in denen ein Leben komplett ohne den Anschluss an Versorgungsysteme möglich ist.
Mit erneuerbaren Energien, Wissen über recycling von Müll und legale Fallen ist das möglich.
</p>
</div>
<div class ="content_container">
<img src="../img/boat_peace.jpg">
<h1 id="smaller_text">Wohn Machine</h1>
<p>
Eine Maschine nutzt Energie um Arbeiten zu verrichten. Unsere Wohnmaschinen nutzen erneurbare Energien um Strom bereitzustellen.
Bauteile der Maschinen sind Materialien, die in großer Anzahl verfügbar sind. Materialien die ohne - oder für wenig Geld zu haben sind.
Durch die Verwendung bauen wir lebendige unabhängige und individuelle Maschinen, die einfach nach- und auszubauen sind.
Wenn es um bauen geht stellt sich immer die Frage nach dem Grund, wem gehört er, wann kann ich ihn mir nehmen.
Mit unseren Wohnmaschinen erforschen wir verschiedene Konzepte, immer mit dem Ziel eine lebendige Maschine zu bauen, die sich selbst versorgt.
</p>
<a href="offgrid/wohnmaschine">Mehr</a>
</div>
<div class ="content_container">
<img src="../img/solar.JPG">
<h1>GPU Miner</h1>
<p> Jede Solaranlage hat Probleme mit der Überproduktion von Strom. Sobald die Recycling Stromspeicher voll sind, geht Energie verloren. Diese Energie nutzen wir zum verifizieren von Transaktionen. Transaktionen von Krypto Währungen. Dabei sehen wir vor allem Monero und Etherium als nützlich an. Etherium Token sind einfach zu Coden. ETH Token als Bestandteil des KaosCubes um mit Contracts den automatischen Tausch von Währung gegen Bandbreite zu gewährleisten. Auch der geringe Ressourcen Verbrauch durch Proof of Stake ist dabei ein Argument für diese Währung.
Monero wird die Grundlage eines sicheren Transaktionssystems innerhalb der Kooperativen. Zusätzlich ist der Mining Algorithmus so aufgebaut, dass er Unrentabilität für große Mining Farmen verspricht.
</p>
<a href="offgrid/miner">Mehr</a>
</div>
</div>
{%endblock content%}

+ 0
- 54
templates/oils.html View File

@ -1,54 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>Cannabinieri - CBD Oils</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-eqiv="X-UA-Compatible" content="ie=edge"/>
<link rel="stylesheet" type="text/css" href="../css/nav.css">
<link rel="stylesheet" type="text/css" href="../css/footer.css">
<link rel="stylesheet" type="text/css" href="../css/global.css">
<link rel="stylesheet" type="text/css" href="../css/oils.css">
<link rel="icon" type="image/webp" href="../../img/Logo.svg">
<script src="../jquery/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
$('#top-nav').load("../components/top-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#main-nav').load("../components/main-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#content').load("../components/oils-content.html");
});
</script>
<script>
$(document).ready(function(){
$('#footer').load("../components/footer.html");
});
</script>
<script src="../js/main.js" defer ></script>
</head>
<body>
<div class="global-wrapper">
<div id="top-nav"></div>
<div id="main-nav"></div>
<div id="content"></div>
<div id="footer"></div>
</div>
</body>
</html>

+ 0
- 55
templates/partners.html View File

@ -1,55 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>Cannabinieri - Partners</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-eqiv="X-UA-Compatible" content="ie=edge"/>
<link rel="stylesheet" type="text/css" href="../css/nav.css">
<link rel="stylesheet" type="text/css" href="../css/footer.css">
<link rel="stylesheet" type="text/css" href="../css/global.css">
<link rel="stylesheet" type="text/css" href="../css/partners.css">
<link rel="icon" type=" image/webp" href="../img/Logo.svg">
<script src="../jquery/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
$('#top-nav').load("../components/top-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#main-nav').load("../components/main-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#content').load("../components/partners-content.html");
});
</script>
<script>
$(document).ready(function(){
$('#footer').load("../components/footer.html");
});
</script>
<script defer src="../js/main.js"></script>
</head>
<body>
<div class="global-wrapper">
<div id="top-nav"></div>
<div id="main-nav"></div>
<div id="content"></div>
<div id="footer"></div>
</div>
</body>
</html>

+ 0
- 56
templates/permaculture.html View File

@ -1,56 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>Cannabinieri - Permaculture</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-eqiv="X-UA-Compatible" content="ie=edge"/>
<link rel="stylesheet" type="text/css" href="css/nav.css">
<link rel="stylesheet" type="text/css" href="css/footer.css">
<link rel="stylesheet" type="text/css" href="css/global.css">
<link rel="stylesheet" type="text/css" href="css/permaculture.css">
<link rel="icon" type="image/webp" href="img/Logo.svg">
<script type="text/javascript" src="jquery/jquery-3.5.1.min.js"></script>
<script type="text/javascript" src="js/pages.js"></script>
<script>
$(document).ready(function(){
$('#top-nav').load("components/top-nav.html");
});
</script>
<script>
// Add MIME type check
$(document).ready(function(){
$('#main-nav').load("components/main-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#content').load("components/permaculture-content.html");
});
</script>
<script>
$(document).ready(function(){
$('#footer').load("components/footer.html");
});
</script>
<script type="text/javascript" src="js/main.js"></script>
</head>
<body>
<div class="global-wrapper">
<div id="top-nav"></div>
<div id="main-nav"></div>
<div id="content"></div>
<div id="footer"></div>
</div>
</body>
</html>

+ 0
- 54
templates/permapp.html View File

@ -1,54 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-eqiv="X-UA-Compatible" content="ie=edge"/>
<link rel="stylesheet" type="text/css" href="../css/nav.css">
<link rel="stylesheet" type="text/css" href="../css/footer.css">
<link rel="stylesheet" type="text/css" href="../css/global.css">
<link rel="stylesheet" type="text/css" href="../css/permapp.css">
<link rel="icon" href="global_img/Logo.svg">
<title>Cannabinieri -PerMapp</title>
<script src="../jquery/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
$('#top-nav').load("../components/top-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#main-nav').load("../components/main-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#footer').load("../components/footer.html");
});
</script>
<script>
$(document).ready(function(){
$('#content').load("../components/permapp-content.html");
});
</script>
<script defer src="../js/main.js"></script>
</head>
<body>
<div class="global-wrapper">
<div id="top-nav"></div>
<div id="main-nav"></div>
<div id ="content"></div>
<div id="footer"></div>
</div>
</body>
</html>

+ 0
- 13
templates/policies.html View File

@ -1,13 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cannabinieri-Policies</title>
</head>
<body>
<h1>Policies</h1>
<p>Add info about all legal information that can be found.</p>
</body>
</html>

+ 0
- 54
templates/spider.html View File

@ -1,54 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>Cannabinieri - Spider</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-eqiv="X-UA-Compatible" content="ie=edge"/>
<link rel="stylesheet" type="text/css" href="css/nav.css">
<link rel="stylesheet" type="text/css" href="css/footer.css">
<link rel="stylesheet" type="text/css" href="css/global.css">
<link rel="stylesheet" type="text/css" href="css/spider.css">
<link rel="icon" type="image/webp" href="img/Logo.svg">
<script type="text/javascript" src="jquery/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
// Add MIME-Type check
$('#top-nav').load("components/top-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#main-nav').load("components/main-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#content').load("components/spider-content.html");
});
</script>
<script>
$(document).ready(function(){
$('#footer').load("components/footer.html");
});
</script>
<script type="text/javascript" src="js/main.js"></script>
</head>
<body>
<div class="global-wrapper">
<div id="top-nav"></div>
<div id="main-nav"></div>
<div id="content"></div>
<div id="footer"></div>
</div>
</body>
</html>

+ 35
- 0
templates/spider.html.tera View File

@ -0,0 +1,35 @@
{%extends "base"%}
{%block title %} Cannabinieri | {{ title[1] }} {%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/spider_out.JPG">
<h1>Spinne</h1>
<p>Wir entwickeln gerade den Prototyp des Low-Tech Hexapods der die Gartenarbeit übernehmen und Daten über unser Ökosystem sammeln soll.
Die Spinne hat noch einen weiten Weg vor sich.
Diese Daten wird er in die PermApp eintragen, eine App die zu einem Netzwerk von Informationen zwischen den Wechselwirkungen in unserem Ökosystem ausgebaut wird.
Die Kommunikation zwischen den Spinnen funktioniert dezentral über das Tor Netzwerk des Kaos Cubes.
</p>
</div>
<div class ="content_container" id="withbutton">
<img src="../img/assembly.jpg">
<h1><span>Spider </span>Pi</h1>
<p>SpiderPi ist Raspberry-Pi betriebener Roboter. Er führt Programme in Python aus und hat eine eingebaute Kamera, über die er in der Lage ist einfache Object Detection auszuführen.
Derzeit sind wir damit beschäftigt mit Hilfe von Photogrammetrie ein 3d Bild zu erstellen in dem der Roboter bewegen und orientieren kann.
Unsere Vision ist es einen bezahlbaren Gartenroboter zu entwickeln, der, während er die Gartenarbeit erledigt, Daten über alle für Pflanzen wichtigen Faktoren sammelt.
Es liegt noch viel Arbeit vor uns. Dafür brauchen wir deine Unterstützung.
</p>
<a href="spider/spiderpi">Mehr</a>
</div>
<div class ="content_container" id="withbutton">
<img src="../img/sample-permapp-screen.png">
<h1><span>Perm</span>App</h1>
<p>In der PermApp werden die Informationen der Wechselwirkungen ökologischer Entitäten gespeichert. Und visualisiert. Durch Rating kommen die besten Systeme an die Oberfläche. Am Ende werden die besten Netze miteinander kombiniert. </p>
<a href="spider/permapp">Mehr</a>
</div>
</div>
{%endblock content%}

+ 0
- 54
templates/spiderpi.html View File

@ -1,54 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>Cannabinieri - SpiderPi</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-eqiv="X-UA-Compatible" content="ie=edge"/>
<link rel="stylesheet" type="text/css" href="../css/nav.css">
<link rel="stylesheet" type="text/css" href="../css/footer.css">
<link rel="stylesheet" type="text/css" href="../css/global.css">
<link rel="stylesheet" type="text/css" href="../css/spiderpi.css">
<link rel="icon" type=" image/webp" href="../img/Logo.svg">
<script src="../jquery/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
$('#top-nav').load("../components/top-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#main-nav').load("../components/main-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#content').load("../components/spiderpi-content.html");
});
</script>
<script>
$(document).ready(function(){
$('#footer').load("../components/footer.html");
});
</script>
<script defer src="../js/main.js"></script>
</head>
<body>
<div class="global-wrapper">
<div id="top-nav"></div>
<div id="main-nav"></div>
<div id="content"></div>
<div id="footer"></div>
</div>
</body>
</html>

+ 0
- 54
templates/whatsthat.html View File

@ -1,54 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>Cannabinieri - About PermaCulture</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-eqiv="X-UA-Compatible" content="ie=edge"/>
<link rel="stylesheet" type="text/css" href="../css/nav.css">
<link rel="stylesheet" type="text/css" href="../css/footer.css">
<link rel="stylesheet" type="text/css" href="../css/global.css">
<link rel="stylesheet" type="text/css" href="../css/whatsthat.css">
<link rel="icon" type=" image/webp" href="../img/Logo.svg">
<script src="../jquery/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
$('#top-nav').load("../components/top-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#main-nav').load("../components/main-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#content').load("../components/whatsthat-content.html");
});
</script>
<script>
$(document).ready(function(){
$('#footer').load("../components/footer.html");
});
</script>
<script defer src="../js/main.js"></script>
</head>
<body>
<div class="global-wrapper">
<div id="top-nav"></div>
<div id="main-nav"></div>
<div id="content"></div>
<div id="footer"></div>
</div>
</body>
</html>

+ 0
- 55
templates/whoweare.html View File

@ -1,55 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>Cannabinieri - About Us</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-eqiv="X-UA-Compatible" content="ie=edge"/>
<link rel="stylesheet" type="text/css" href="../css/nav.css">
<link rel="stylesheet" type="text/css" href="../css/footer.css">
<link rel="stylesheet" type="text/css" href="../css/global.css">
<link rel="stylesheet" type="text/css" href="../css/whoweare.css">
<link rel="icon" type=" image/webp" href="../img/Logo.svg">
<script src="../jquery/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
$('#top-nav').load("../components/top-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#main-nav').load("../components/main-nav.html");
});
</script>
<script>
$(document).ready(function(){
$('#content').load("../components/whoweare-content.html");
});
</script>
<script>
$(document).ready(function(){
$('#footer').load("../components/footer.html");
});
</script>
<script defer src="../js/main.js"></script>
</head>
<body>
<div class="global-wrapper">
<div id="top-nav"></div>
<div id="main-nav"></div>
<div id="content"></div>
<div id="footer"></div>
</div>
</body>
</html>

Loading…
Cancel
Save