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