]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/location/index.html
97e8399e3dad7a34bc4415639ae8b374aecbd7fe
[ipfire.org.git] / src / templates / location / index.html
1 {% extends "base.html" %}
2
3 {% block head %}
4 <meta name="description" content="{{ _("A powerful location database to find people on the Internet") }}" />
5 {% end block %}
6
7 {% block title %}{{ _("Welcome to IPFire") }}{% end block %}
8
9 {% block container %}
10 <header class="cover">
11 <div class="container d-flex h-100 align-items-center">
12 <div class="row flex-fill">
13 <div class="col-12 col-md-6 my-5 text-center">
14 <i class="fas fa-globe-europe fa-10x py-5"></i>
15
16 <h3>{{ address }}</h3>
17 </div>
18
19 <div class="col-12 col-md-6 align-self-center px-3">
20 <h1 class="display-1">{{ _("Hey you!") }}</h1>
21
22 <h6>{{ _("You are visiting us from") }}</h6>
23
24 <dl class="row">
25 <dt class="col-sm-3">{{ _("Country") }}</dt>
26 <dd class="col-sm-9">
27 {{ format_country_name(address.country_code) if address.country_code else _("N/A") }}
28 </dd>
29
30 <dt class="col-sm-3">{{ _("Network") }}</dt>
31 <dd class="col-sm-9">{{ address.asn or _("Unknown") }}</dd>
32 </dl>
33 </div>
34 </div>
35 </div>
36 </header>
37
38 <section class="inverse">
39 <div class="container">
40 <div class="row mb-5">
41 <div class="col-12">
42 <h1 class="mb-3">{{ _("What is IPFire Location?") }}</h1>
43
44 <p>
45 IPFire Location can be used in firewalls or other threat
46 detection software, load-balancers, online shops, websites,
47 analytics &amp; reporting tools and more to detect the
48 originating country by IP address.
49 We are proud that our software is faster than others
50 by maintaining a smaller memory footprint which puts it
51 first in performance.
52 </p>
53
54 <p>
55 Our daily updated database does not only have information
56 about the originating country of all IPv6 and IPv4 addresses.
57 It identifies the Autonomous System (AS) these IP
58 addresses belong to, as well and more...
59 </p>
60
61 <p>
62 <code>libloc</code> is the C/C++ library that fires our
63 location services and runs on *nix, Mac OS X and more.
64 Integration into existing software is very easy and
65 bindings for languages like Python and Perl are available.
66 </p>
67
68 <div class="btn-toolbar mb-5">
69 <a class="btn btn-secondary mr-2" href="/how-to-use">{{ _("How To Use") }}</a>
70 <a class="btn btn-primary" href="https://www.ipfire.org/donate">
71 {{ _("Donate") }}
72 </a>
73 </div>
74 </div>
75 </div>
76
77 <div class="row mt-5">
78 <div class="col-md-12 col-lg-6 mb-5 d-flex">
79 <div class="align-self-stretch">
80 <span class="fas fa-biohazard fa-2x text-primary px-3"></span>
81 </div>
82
83 <div class="flex-column">
84 <h5 class="mb-3">{{ _("Threat Detection") }}</h5>
85
86 <p>
87 {{ _("Location information is crucial to identify where an attacker is coming from.") }}
88 <br>
89 {{ _("Analyze your traffic for malicious autonomous systems and block the straight away with IPFire.") }}
90 </p>
91 </div>
92 </div>
93
94 <div class="col-md-12 col-lg-6 mb-5 d-flex">
95 <div class="align-self-stretch">
96 <span class="fas fa-balance-scale fa-2x text-primary px-3"></span>
97 </div>
98
99 <div class="flex-column">
100 <h5 class="mb-3">{{ _("Load-Balancing") }}</h5>
101
102 <p>
103 {{ _("Redirect your users to the nearest data center to given them a better user experience with faster websites and faster downloads.") }}
104 </p>
105 </div>
106 </div>
107
108 <div class="col-md-12 col-lg-6 mb-5 d-flex">
109 <div class="align-self-stretch">
110 <span class="fas fa-route fa-2x text-primary px-3"></span>
111 </div>
112
113 <div class="flex-column">
114 <h5 class="mb-3">{{ _("Online Visitors") }}</h5>
115
116 <p>
117 {{ _("Comply with legal requirements and show visitors the correct information depending on the country they are visiting from.") }}
118 </p>
119 </div>
120 </div>
121
122 <div class="col-md-12 col-lg-6 mb-5 d-flex">
123 <div class="align-self-stretch">
124 <span class="fab fa-osi fa-2x text-primary px-3"></span>
125 </div>
126
127 <div class="flex-column">
128 <h5 class="mb-3">{{ _("Open Source") }}</h5>
129
130 <p>
131 {{ _("libloc is free software and relies on support from the community.") }}
132 {{ _("You can support us by helping to improve our database or with your donation.") }}
133 </p>
134 </div>
135 </div>
136 </div>
137 </div>
138 </section>
139 {% end block %}