]> git.ipfire.org Git - ipfire.org.git/blame - src/templates/location/how-to-use/index.html
location: Create page for the new DNS feature
[ipfire.org.git] / src / templates / location / how-to-use / index.html
CommitLineData
78eb671f 1{% extends "../../base.html" %}
55eea098 2
b73e143d 3{% block title %}{{ _("How To Use?") }}{% end block %}
55eea098
MT
4
5{% block container %}
d9e4d7b2 6 <section class="hero is-light">
07992979
MT
7 <div class="hero-body">
8 <div class="container">
ed83981e 9 <nav class="breadcrumb" aria-label="breadcrumbs">
07992979
MT
10 <ul>
11 <li>
12 <a href="/">
13 {{ _("Home") }}
14 </a>
15 </li>
16 <li>
1c87d674 17 <a href="/location">
07992979
MT
18 {{ _("Location") }}
19 </a>
20 </li>
21 <li class="is-active">
d9e4d7b2 22 <a href="#" aria-current="page">{{ _("How To Use?") }}</a>
07992979
MT
23 </li>
24 </ul>
25 </nav>
26
d9e4d7b2 27 <h1 class="title">{{ _("How To Use?") }}</h1>
55eea098
MT
28 </div>
29 </div>
30 </section>
31
07992979 32 <section class="section">
55eea098 33 <div class="container">
d9e4d7b2
MT
34 <p>
35 The heart of the IPFire Location project is a small, lightweight library
36 called <code>libloc</code>.
07992979 37
d9e4d7b2
MT
38 It sources the data, builds and reads the database.
39 </p>
55eea098
MT
40 </div>
41 </section>
42
07992979 43 <section class="section">
55eea098 44 <div class="container">
d9e4d7b2
MT
45 <div class="buttons are-medium">
46 <a class="button is-light is-fullwidth" href="/location/how-to-use/cli">
47 <span class="icon">
48 <i class="fa-solid fa-terminal"></i>
49 </span>
50 <span>{{ _("Command Line") }}</span>
51 </a>
52
53 <a class="button is-light is-fullwidth" href="/location/how-to-use/c" disabled>
54 {{ _("C/C++") }}
55 </a>
56
57 <a class="button is-light is-fullwidth" href="/location/how-to-use/python">
58 <span class="icon">
59 <i class="fa-brands fa-python"></i>
60 </span>
61 <span>{{ _("Python") }}</span>
62 </a>
63
64 <a class="button is-light is-fullwidth" href="/location/how-to-use/lua" disabled>
65 {{ _("Lua") }}
66 </a>
67
521592f2 68 <a class="button is-light is-fullwidth" href="/location/how-to-use/dns">
d9e4d7b2
MT
69 {{ _("DNS") }}
70 </a>
55eea098
MT
71 </div>
72 </div>
73 </section>
74{% end block %}