-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
76 lines (75 loc) · 2.84 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
---
# Feel free to add content and custom Front Matter to this file.
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
layout: page
buttons:
- title: "WHOIS"
url: "https://whois-web.as207960.net"
- title: "Contact Us"
url: "/contact.html"
description: "AS207960 is an UK based ASN, the IP networking side of Glauca. On a mission to make interneting just a little easier. Possibly anarchist, definitely antifascist."
# Accredditaton logos are kept in _data/accreditations.yml
# Staff in _data/directors.yml
---
<main role="main" class="flex-shrink-0">
<div class="container my-3">
<div class="bg-light rounded p-3 my-3">
<div class="row">
<div class="col-md-3">
<img src="{{site.logo}}" class="mw-100" />
</div>
<div class="col-md-9">
<h1 class="display-4">{{site.title}}</h1>
<p class="lead">{{site.tagline}}</p>
<p>{{ site.description }}</p>
{% for button in page.buttons %}
<a class="btn btn-primary btn-lg" href="{{ button.url }}" role="button">{{ button.title }}</a>
{% endfor %}
</div>
</div>
</div>
<div class="card my-3">
<div class="card-body">
<h5 class="card-title">Looking to buy our services?</h5>
<p class="card-text">
All our prices, and details on how to order, are available <a href="https://glauca.digital/prices/">here</a>.
</p>
</div>
</div>
<div class="row">
<div class="col-md-6">
<h1>Who runs AS207960?</h1>
{% for person in site.data.directors %}
{% if person.url %}
<h3><a href="{{ person.url}}">{{ person.name }}</a></h3>
{% else %}
<h3>{{ person.name }}</h3>
{% endif %}
{% endfor %}
</div>
<div class="col-md-6">
<h1>Peering</h1>
<p class="lead">We have an open policy; if you can get a link to us, you can peer</p>
<p>See our <a href="/peering.html">peering policy</a> entry for more info</p>
</div>
</div>
<div class="row align-items-center">
{% for accred in site.data.accreditations %}
{% assign remainder = forloop.index | modulo: 4 %}
{% if accred.url %}
<div class="col-sm text-center my-3">
<a href="{{ accred.url }}"><img class="mw-100" style="max-height: 100px" src="{{ accred.image }}" title=alt="{{ accred.alt }}" alt="{{ accred.alt }}" /></a>
</div>
{% else %}
<div class="col-sm text-center my-3">
<img class="mw-100" style="max-height: 100px" src="{{ accred.image }}" title="{{ accred.alt }}" alt="{{ accred.alt }}" />
</div>
{% endif %}
{% if remainder == 0 %}
</div>
<div class="row align-items-center">
{% endif %}
{% endfor %}
</div>
</div>
</main>