-
Notifications
You must be signed in to change notification settings - Fork 7
/
index-es.html
96 lines (88 loc) · 3.63 KB
/
index-es.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
---
layout: default-es
title: Inicio
class: home
lang: es
ref: home
---
<header class="header">
{% include navigation.html %}
<div class="header__content home__header">
<div class="home__header__content">
<h1 class="sr-only">Geotrek</h1>
<img src="assets/img/logo-home.svg" alt="Geotrek logo">
<h2 class="home__baseline">Gestiona y promueve tus rutas y actividades turísticas</h2>
<a href="produit-es.html" class="button button--white">Saber más</a>
</div>
</div>
</header>
<section class="home__intro">
<h2 class="title home__intro__headline">Solución Web mapping <small>Una aplicación SIG de gestión, un sitio web y
una aplicación móvil</small></h2>
<div class="grid grid--center">
<div class="grid__item grid__item--33">
<img class="home__image" src="assets/img/home-ui.svg" alt="">
<h3 class="home__intro__title title">Gestiona y promueve</h3>
<p>Ergonómica y completa, Geotrek permite la gestión y promoción del territorio a través de funcionalidades
innovadoras</p>
</div>
<div class="grid__item grid__item--33">
<img class="home__image" src="assets/img/home-apps.svg" alt="">
<h3 class="home__intro__title title">Solución 4 en 1</h3>
<p>Geotrek-admin para la gestión de datos, Geotrek-rando para la promoción de actividades, Widget Geotrek para integrar la promoción de actividades en un sitio existente y Geotrek-mobile
en el terreno componen una oferta única y completa</p>
</div>
<div class="grid__item grid__item--33">
<img class="home__image" src="assets/img/home-github.svg" alt="">
<h3 class="home__intro__title title">Open source</h3>
<p>Publicado bajo licencia libre BSD, Geotrek evoluciona gracias a su comunidad de usuarios que se beneficia
de las inversiones previas y contribuye en beneficio de todos</p>
</div>
</div>
<div class="grid grid--center">
<div class="video-responsive" style="position:unset;">
<iframe allowfullscreen="" frameborder="0" height="535" src="https://www.youtube.com/embed/vRfl0ies5GY?hl=en&cc_lang_pref=en&cc_load_policy=1" title="Geotrek" width="900"></iframe>
</div>
</div>
</section>
<section class="grid utilisateurs__banner">
<h3 class="utilisateurs__banner__text">Descubre los usuarios !</h3>
<a href="utilisateurs.html" class="button button--turquoise">Acceso al mapa</a>
</section>
<section class="grid contact__banner">
<h3 class="contact__banner__text">Quieres adoptar Geotrek ?</h3>
<a href="contact-es.html" class="button">Contacta con nosotros</a>
</section>
<section class="actus">
<h2 class="title title--light">Todas las noticias sobre Geotrek</h2>
{% assign posts = site.posts | where:"lang", page.lang %}
{% if posts.length == 0 %}
<div class="grid actus__items">
<p>Próximamente</p>
</div>
{% else %}
<div class="grid actus__items">
{% for post in posts limit:3 %}
<div class="grid__item grid__item--33">
<h3 class="title title--medium">
<a href="{{ post.url }}" title="{{ post.title }}">
{{ post.title }}
</a>
</h3>
<p class="subtitle">{% include date.html date=post.date %}{{ month }} {{ year }}</p>
{% if post.excerpt %}
{{ post.excerpt }}
<p class="more">
<a href="{{ post.url }}">En lire plus</a>
</p>
{% endif %}
{% if post.image %}
<img src="{{ site.baseurl }}/{{ post.image }}" style="width: 100%; height: auto">
{% endif %}
</div>
{% endfor %}
</div>
<a href="actualites-es.html" class="actus__link">Ver todas las noticias</a>
{% endif %}
</section>
{% include logos-parcs.html %}