]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/fireinfo/vendor.html
fireinfo: substituted subdomain for new nav path
[ipfire.org.git] / src / templates / fireinfo / vendor.html
1 {% extends "../base.html" %}
2
3 {% block title %}{{ vendor_name }}{% end block %}
4
5 {% block container %}
6 <section class="hero is-primary">
7 <div class="hero-body">
8 <div class="container">
9 <nav class="breadcrumb is-medium" aria-label="breadcrumbs">
10 <ul>
11 <li>
12 <a href="https://ipfire.org/">
13 Home
14 </a>
15 </li>
16 <li>
17 <a href="/fireinfo">
18 {{ _("Fireinfo") }}
19 </a>
20 </li>
21 <li>
22 <a href="/fireinfo/vendors">
23 {{ _("Vendors") }}
24 </a>
25 </li>
26 <li class="is-active">
27 <a href="#">
28 {{ vendor_name }}
29 </a>
30 </li>
31 </ul>
32 </nav>
33
34 <h2 class="title is-2">{{ _("All known devices by %s") % vendor_name }}</h2>
35 </div>
36 </div>
37 </section>
38
39 {% module FireinfoDeviceAndGroupsTable(devices) %}
40 {% end block %}