diff options
Diffstat (limited to 'templates/index.html')
-rwxr-xr-x | templates/index.html | 41 |
1 files changed, 36 insertions, 5 deletions
diff --git a/templates/index.html b/templates/index.html index e1c388e..5e46ec9 100755 --- a/templates/index.html +++ b/templates/index.html @@ -5,7 +5,8 @@ <div> <div class="flex flex-col items-center justify-center py-12 px-12 xl:px-0"> - <img src="{{ config.extra.organization.logo }}" width="220px" class="" /> + <h1 class="hidden">{{config.extra.organization.name}}</h1> + <img src="{{ config.extra.organization.logo }}" width="220px" alt="{{config.extra.organization.name}}"/> <p class="text-gray-500 leading-10 pt-4 text-xl text-center">{{ config.extra.organization.description }}</p> <div class="max-w-7xl mx-auto grid grid-cols-1 md:grid-cols-3 gap-x-32 py-12"> <div class="group flex flex-col items-center justify-center p-2"> @@ -167,14 +168,44 @@ </li> </ul> </div> + </div> + <div class="w-full flex flex-col items-center justify-center border-b"> + <div id="map-container" class="relative w-full shadow-inner border-t border-b"> + <span class="absolute top-1/2 left-1/2 transform -translate-y-1/2 text-2xl text-white font-light select-none px-2 py-1.5 rounded shadow" style="background:#999999;"> + Made for redundancy + </span> + </div> + <div id="map-legend-container" class="max-w-7xl mx-auto flex items-center justify-around space-x-12 py-2 text-sm text-gray-700"> + <div> + <p class="text-base text-gray-600">Each chunk of data is replicated in 3 zones</p> + </div> + <div class="flex items-center space-x-2"> + <img class="select-none" src="{{ get_url(path='icons/servers.svg') }}" width="48px"> + <span>Zone (multiple servers)</span> + </div> + <div class="flex items-center space-x-2"> + <img class="select-none" src="{{ get_url(path='icons/datachunks.svg') }}" width="48px"> + <span>Chunks of data</span> + </div> + </div> </div> - {% if section.content %} - <div class="content max-w-7xl mx-auto py-12"> - {{ section.content | safe }} + <div class="w-full flex flex-col items-center justify-center shadow-inner"></div> + <div class="py-24 space-y-8 text-garage-gray max-w-4xl mx-auto"> + <h2 class="text-2xl text-garage-orange font-semibold">Sponsors and funding</h2> + <p> + The Deuxfleurs association has received a grant from <a class="text-garage-orange underline" href="https://pointer.ngi.eu/" target="_blank">NGI POINTER</a>, + to fund 3 people working on Garage full-time for a year : from October 2021 to September 2022. + </p> + <img src="{{ get_url(path='images/ngi-pointer-eu.png') }}" class="w-2/3" alt="NGI Pointers"> + <p class="italic"> + This project has received funding from the European Union's Horizon 2021 research and innovation programme + within the framework of the NGI-POINTER Project funded under grant agreement N° 871528. + </p> </div> - {% endif %} + </div> + </div> </section> {% endblock %} |