Skip to content

Commit

Permalink
Reformat templates
Browse files Browse the repository at this point in the history
  • Loading branch information
randomairborne committed Aug 26, 2024
1 parent 60fdddb commit b1f470c
Show file tree
Hide file tree
Showing 2 changed files with 102 additions and 102 deletions.
34 changes: 17 additions & 17 deletions templates/404.hbs
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="robots" content="noindex" />
<meta
name="description"
content="How did we get here? This website only has a root page."
/>
<title>404 not found</title>
{% include "style.hbs" %}
</head>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="robots" content="noindex" />
<meta
name="description"
content="How did we get here? This website only has a root page."
/>
<title>404 not found</title>
{% include "style.hbs" %}
</head>

<body>
<div class="stack">
<span>404 not found</span>
<a href="/" class="home">Go home?</a>
</div>
</body>
<body>
<div class="stack">
<span>404 not found</span>
<a href="/" class="home">Go home?</a>
</div>
</body>
</html>
170 changes: 85 additions & 85 deletions templates/index.hbs
Original file line number Diff line number Diff line change
@@ -1,93 +1,93 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
{%- match ip -%}
{%- when IpAddr::V4 with (_) -%}
<link
rel="preload"
href="{{ proto }}://v6.{{ root_dns_name }}/raw"
as="fetch"
crossorigin="anonymous"
nonce="{{ nonce }}"
>
{%- when IpAddr::V6 with (_) -%}
<link
rel="preload"
href="{{ proto }}://v4.{{ root_dns_name }}/raw"
as="fetch"
crossorigin="anonymous"
nonce="{{ nonce }}"
>
{%- endmatch -%}
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="{{ description }}">
<meta property="og:title" content="GiveIP">
<meta property="og:url" content="{{ proto }}://{{ root_dns_name }}/">
<meta property="og:description" content="{{ description }}">
<link rel="canonical" href="https://{{ root_dns_name }}/">
{% include "style.hbs" %}
{%- match ip -%}
{%- when IpAddr::V4 with (ipv4) -%}
<title>Your public IP is {{ ipv4 }}</title>
{%- when IpAddr::V6 with (_) -%}
<title>What's your IP?</title>
{%- endmatch -%}
</head>
<head>
<meta charset="UTF-8" />
{%- match ip -%}
{%- when IpAddr::V4 with (_) -%}
<link
rel="preload"
href="{{ proto }}://v6.{{ root_dns_name }}/raw"
as="fetch"
crossorigin="anonymous"
nonce="{{ nonce }}"
/>
{%- when IpAddr::V6 with (_) -%}
<link
rel="preload"
href="{{ proto }}://v4.{{ root_dns_name }}/raw"
as="fetch"
crossorigin="anonymous"
nonce="{{ nonce }}"
/>
{%- endmatch -%}
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="{{ description }}" />
<meta property="og:title" content="GiveIP" />
<meta property="og:url" content="{{ proto }}://{{ root_dns_name }}/" />
<meta property="og:description" content="{{ description }}" />
<link rel="canonical" href="https://{{ root_dns_name }}/" />
{% include "style.hbs" %}
{%- match ip -%}
{%- when IpAddr::V4 with (ipv4) -%}
<title>Your public IP is {{ ipv4 }}</title>
{%- when IpAddr::V6 with (_) -%}
<title>What's your IP?</title>
{%- endmatch -%}
</head>

<body>
<script
defer
src="https://static.cloudflareinsights.com/beacon.min.js"
data-cf-beacon='{"token": "872609be4c924b219e5de38a6e0b26a0"}'
nonce="{{ nonce }}"
></script>
<div class="stack">
{%- match ip -%}
{%- when IpAddr::V4 with (ipv4) -%}
<span>Your public IPv4 is: <code>{{ ipv4 }}</code></span>
<span id="ip6-container" hidden>
<body>
<script
defer
src="https://static.cloudflareinsights.com/beacon.min.js"
data-cf-beacon='{"token": "872609be4c924b219e5de38a6e0b26a0"}'
nonce="{{ nonce }}"
></script>
<div class="stack">
{%- match ip -%}
{%- when IpAddr::V4 with (ipv4) -%}
<span>Your public IPv4 is: <code>{{ ipv4 }}</code></span>
<span id="ip6-container" hidden>
Your public IPv6 is: <code id="ip6-text">(fetching)</code>
</span>
{%- when IpAddr::V6 with (ipv6) -%}
<span id="ip4-container" hidden>
{%- when IpAddr::V6 with (ipv6) -%}
<span id="ip4-container" hidden>
Your public IPv4 is: <code id="ip4-text">(fetching)</code>
</span>
<span>Your public IPv6 is: <code>{{ ipv6 }}</code></span>
{%- endmatch -%}
</div>
{%- match ip -%}
{%- when IpAddr::V4 with (ipv4) -%}
<script nonce="{{ nonce }}">
const v6_endpoint = `{{ proto }}://v6.{{ root_dns_name }}/raw`;
const ip6 = document.getElementById("ip6-text");
const ip6txt = document.getElementById("ip6-container");
fetch(v6_endpoint)
.then((req) => req.text())
.then((resp) => {
ip6.innerText = resp.trim();
ip6txt.hidden = false;
})
.catch((failed) => {
console.log("Request failed:" + failed);
});
</script>
{%- when IpAddr::V6 with (ipv6) -%}
<script nonce="{{ nonce }}">
const v4_endpoint = `{{ proto }}://v4.{{ root_dns_name }}/raw`;
const ip4txt = document.getElementById("ip4-container");
const ip4 = document.getElementById("ip4-text");
fetch(v4_endpoint)
.then((req) => req.text())
.then((resp) => {
ip4.innerText = resp.trim();
ip4txt.hidden = false;
document.title = `Your IP is ${resp}`;
})
.catch((failed) => {
console.log("Request failed:" + failed);
});
</script>
{%- endmatch -%}
</body>
<span>Your public IPv6 is: <code>{{ ipv6 }}</code></span>
{%- endmatch -%}
</div>
{%- match ip -%}
{%- when IpAddr::V4 with (ipv4) -%}
<script nonce="{{ nonce }}">
const v6_endpoint = `{{ proto }}://v6.{{ root_dns_name }}/raw`;
const ip6 = document.getElementById("ip6-text");
const ip6txt = document.getElementById("ip6-container");
fetch(v6_endpoint)
.then((req) => req.text())
.then((resp) => {
ip6.innerText = resp.trim();
ip6txt.hidden = false;
})
.catch((failed) => {
console.log("Request failed:" + failed);
});
</script>
{%- when IpAddr::V6 with (ipv6) -%}
<script nonce="{{ nonce }}">
const v4_endpoint = `{{ proto }}://v4.{{ root_dns_name }}/raw`;
const ip4txt = document.getElementById("ip4-container");
const ip4 = document.getElementById("ip4-text");
fetch(v4_endpoint)
.then((req) => req.text())
.then((resp) => {
ip4.innerText = resp.trim();
ip4txt.hidden = false;
document.title = `Your IP is ${resp}`;
})
.catch((failed) => {
console.log("Request failed:" + failed);
});
</script>
{%- endmatch -%}
</body>
</html>

0 comments on commit b1f470c

Please sign in to comment.