-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d61f76c
commit 55acb56
Showing
17 changed files
with
211 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<footer> | ||
<div class="container-lg p-responsive py-4 "> | ||
<div class="d-flex flex-justify-between"> | ||
<ul class="list-style-none float-right text-small"> | ||
<li class="d-inline-block ml-lg-2"><a href="mailto:contact@osfarm.org">Contact Us</a></li> | ||
</ul> | ||
|
||
<a href="/" class="text-center"> | ||
<span class="sr-only">Acceuil</span> | ||
{% octicon mark-github height:24 class:"fill-gray-light d-inline" aria-label:github-logo %} | ||
</a> | ||
|
||
<ul class="list-style-none float-left text-small"> | ||
<li class="d-inline-block mr-lg-2"><a href="https://github.com/osfarm">Sur GitHub</a></li> | ||
<li class="d-none d-lg-inline-block mr-lg-2"><a href="/fr/why">Pourquoi</a></li> | ||
<li class="d-none d-lg-inline-block mr-lg-2"><a href="/fr/community">Solutions</a></li> | ||
</ul> | ||
</div> | ||
|
||
<p class="border-top text-center f5 mt-4 pt-4">© 2023 - {{ site.time | date: '%Y' }} <span>OSFarm</span>, Inc. and contributors</p> | ||
</div> | ||
|
||
</footer> | ||
|
||
|
||
<script src="{{ "/assets/vendor/anchor-js/anchor.min.js" | relative_url}}"></script> | ||
<script src="{{ "/assets/vendor/jquery/dist/jquery.min.js" | relative_url}}"></script> | ||
<script>anchors.add('.org-type h4');</script> | ||
{% if page.url == "/community/" %} | ||
<script src="{{ "/assets/js/community.js" | relative_url}}"></script> | ||
{% elsif page.url == "/" %} | ||
<script src="{{ "/assets/js/home.js" | relative_url}}"></script> | ||
{% endif %} | ||
</body> | ||
</html> | ||
<!-- Proudly powered by GitHub Pages ~ Generated {{ site.time }} --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<!DOCTYPE html> | ||
<html lang="fr"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="shortcut icon" href="{{ "/assets/img/favicon.ico" | relative_url }}" type="image/x-icon"> | ||
<link rel="stylesheet" type="text/css" href="{{ "/assets/css/style.css" | relative_url }}"> | ||
<script src="https://code.highcharts.com/highcharts.js"></script> | ||
<link rel="preload" as="font" href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,700,700i" crossorigin> | ||
{% seo %} | ||
</head> | ||
<body{% if page.id %} id="{{ page.id }}"{% endif %} class="{{ page.layout }}"> | ||
|
||
<div class="page-header pt-4 pb-5"> | ||
<nav class="language-switcher"> | ||
<a href="{{ site.baseurl }}/" class="text-white">EN</a> | ||
</nav> | ||
<div class="container-lg"> | ||
<div class="text-center"> | ||
<a href="{{ "/fr/" | relative_url}}"><img class="logo py-3" src="{{ "/assets/img/logo_white.png" | relative_url}}" alt="OSFarm"></a> | ||
<ul> | ||
<li class="text-center d-block d-sm-inline-block px-1 px-md-3"><a href="{{ "/fr/why" | relative_url}}" class="text-white">Pourquoi</a></li> | ||
<li class="text-center d-block d-sm-inline-block px-1 px-md-3"><a href="{{ "/fr/community/" | relative_url}}" class="text-white">Solutions</a></li> | ||
<li class="text-center d-block d-sm-inline-block px-1 px-md-3"><a href="{{ "/fr/#contact-a-human" | relative_url}}" class="text-white">Contactez nous</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
<!-- .full-width here gets closed on support-page.html and home.html layouts --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{% include fr-header.html %} | ||
|
||
{{ content }} | ||
|
||
{% include fr-footer.html %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{% include fr-header.html %} | ||
</div> | ||
<div id="{{ page.title | replace: ' ','-' }}" class="container-lg p-responsive"> | ||
<div class="text-center my-3 my-md-6"> | ||
<h1 class="alt-h1">{{ page.title }}</h1> | ||
<p class="alt-lead text-gray col-md-10 mx-auto">{{ page.description }}</p> | ||
</div> | ||
</div> | ||
|
||
<div class="container-lg p-responsive"> | ||
{{ content }} | ||
</div> | ||
|
||
<!-- https://www.andreaverlicchi.eu/lazyload/ --> | ||
<script type="text/javascript"> | ||
(function (w, d) { | ||
var b = d.getElementsByTagName('body')[0]; | ||
var s = d.createElement("script"); s.async = true; | ||
var v = !("IntersectionObserver" in w) ? "8.8.0" : "10.9.0"; | ||
s.src = "https://cdnjs.cloudflare.com/ajax/libs/vanilla-lazyload/" + v + "/lazyload.min.js"; | ||
w.lazyLoadOptions = {}; | ||
b.appendChild(s); | ||
}(window, document)); | ||
</script> | ||
{% include fr-footer.html %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
--- | ||
title: SIA 2024 | ||
layout: support-page | ||
layout: fr-support-page | ||
description: « Rendez-vous au SIA du 24/02/2024 au 03/03/2024 - Hall 4 » | ||
permalink: /sia2024/ | ||
permalink: /fr/sia2024/ | ||
lang: fr | ||
--- | ||
[La ferme digitale](https://www.lafermedigitale.fr/) réunis tous les ans plus de 140 partenaires et startups lors du salon de l'agriculture. | ||
|
||
Cette année, nous aurons le plaisir de vous présenter, en avant première, nos premiers projets OSFarm. | ||
Cette année, nous aurons le plaisir de vous présenter, en avant première, nos projets OSFarm sur le Stand d'Ekylibre et de Brad technologies - Hall 4. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.