Statistics
| Branch: | Tag: | Revision:

root / djnro / templates / front / index.html @ 2788460f

History | View | Annotate | Download (2.7 kB)

1
{% extends "base.html" %}
2
{% load i18n %}
3
{% load staticfiles %}
4
{% block currentpagetitle %}{% trans "Home" %}{% endblock %}
5

    
6
{% block hometop %}active{% endblock %}
7

    
8
{% block bodyclass %}home{% endblock %}
9
{% block content %}
10
        <div id="map_wrapper">
11
                <div id="map_canvas" style="width:100%; height:600px; overflow: hidden;" data-map-center-lat="{{MAP_CENTER.0}}" data-map-center-lng="{{MAP_CENTER.1}}" data-pin="{% static 'img/edugroup.png' %}" data-city="{% static 'img/city.png' %}" data-country="{% static 'img/country.png' %}" data-markers="{% url get-all-services %}"></div>
12
        </div>
13
        <div class="squares">
14
                <div class="container">
15
                        <div class="row">
16
                                <div class="col-lg-4 square">
17
                                        <div>
18
                                                <h3>
19
                                                        <i class="fa fa-location-arrow fa-5x"></i>
20
                                                </h3>
21
                                                <p>
22
                                                        {% blocktrans %}
23
                                                        You might be wondering about the location of the closest eduroam access points in order to be able to connect to Eduroam. We provide a service and an api in order to help you find the closest Eduroam access point.
24
                                                        {% endblocktrans %}
25

    
26
                                                </p>
27

    
28
                                                <p>
29
                                                        <a href="{% url geolocate %}" target="_blank" class="btn btn-primary btn-lg" href="#" role="button">                Show me!
30
                                                        </a>
31

    
32
                                                </p>
33
                                        </div>
34
                                </div>
35
                                <div class="col-lg-4 square">
36
                                        <div class="">
37
                                                <h3>
38
                                                        <i class="fa fa-wifi fa-5x"></i>
39
                                                </h3>
40
                                                <p>
41
                                                {% blocktrans %}
42
                                                        Eduroam (education roaming) is the secure, world-wide roaming access service developed for the international research and education community. It allows students, researchers and staff from participating institutions to obtain Internet connectivity across campus and when visiting other participating institutions by simply opening their laptop.
43
                                                {% endblocktrans %}
44
                                                </p>
45
                                        </div>
46
                                </div>
47
                                <div class="col-lg-4 square">
48
                                        <div>
49
                                                <h3>
50
                                                        <i class="fa fa-cog fa-5x"></i>
51
                                                </h3>
52
                                                <div class="">
53
                                                        <p>
54
                                                        {% blocktrans %}
55
                                                                To use eduroam wifi you will need to setup your laptop or smartphone. As end-user you will only be able to use eduroam if your institution provides electronic identity (e.g. account for network access). In that case you will need to contact your administrator and ask for an account. You (or your network administrator) will have to configure your computer to enable eduroam access.
56
                                                        {% endblocktrans %}
57
                                                        </p>
58
                                                </div>
59
                                        </div>
60
                                </div>
61
                        </div>
62
                </div>
63
        </div>
64
{% endblock %}
65

    
66
{% block extrajs %}
67
<script type="text/javascript" src="{% static 'js/markerclusterer.js' %}"></script>
68
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?sensor=false"></script>
69
<script type="text/javascript" src="{% static 'js/home-page-map.js' %}"></script>
70
{% endblock %}