-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex-en.html
90 lines (82 loc) · 3.44 KB
/
index-en.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
---
layout: default-en
title: Home
class: home
lang: en
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">Manage and promote your tourist trails and activities</h2>
<a href="produit-en.html" class="button button--white">Read more</a>
</div>
</div>
</header>
<section class="home__intro">
<h2 class="title home__intro__headline">Web mapping application suite <small>GIS business-oriented tool, a website and
a mobile application</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">Manage and promote</h3>
<p>User-friendly and comprehensive, Geotrek allows management and promotion of the area through rich and
innovative features</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">Solution 4 in 1</h3>
<p>Geotrek-admin for data management, Geotrek-rando for the promotion of activities, Geotrek-widget to integrate the promotion of activities on an existing site and Geotrek-mobile in
the field are a unique and compelling offering</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>Published under free BSD license, Geotrek is evolving thanks to its users community which benefits from
investment and contribute for the benefits of all</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">Discover the users !</h3>
<a href="utilisateurs.html" class="button button--turquoise">Access to the map</a>
</section>
<section class="grid contact__banner">
<h3 class="contact__banner__text">Want to adopt Geotrek ?</h3>
<a href="contact-en.html" class="button">Contact us</a>
</section>
<section class="actus">
<h2 class="title title--light">All news around Geotrek</h2>
<div class="grid actus__items">
{% assign posts = site.posts|where:"lang", page.lang %}
{% 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-en.html" class="actus__link">See all news</a>
</section>
{% include logos-parcs.html %}