-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdefault.html
More file actions
106 lines (86 loc) · 4.37 KB
/
default.html
File metadata and controls
106 lines (86 loc) · 4.37 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="referrer" content="strict-origin-when-cross-origin">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self' https://fonts.bunny.net; font-src https://fonts.bunny.net; img-src 'self' data:; frame-src https://open.spotify.com; connect-src 'self'; object-src 'none'; base-uri 'self'; form-action 'self'">
<link href="https://fonts.bunny.net/css2?family=Inter:wght@400;600&family=Space+Mono:wght@400&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="/assets/style.css">
<link rel="alternate" type="application/rss+xml" title="remotehack - Airquotes The Pocast Airquotes" href="/live/feed/" />
<link rel="alternate" type="application/rss+xml" title="remotehack - Hacks" href="/feed.xml" />
<!-- [EXPIRES 24 MAR 2026] Prompt API origin trial : https://developer.chrome.com/origintrials/#/view_trial/2533837740349325313 -->
<meta http-equiv="origin-trial" content="Ar0t+xzjU+bJSDl6+bCnDs5w+8ahJ+DhXaR9To2o5og/T/nXRBRoSJlX9rKcPNKHk0Dfj/YW4SIb3um+XAuP6QUAAABkeyJvcmlnaW4iOiJodHRwczovL3JlbW90ZWhhY2suc3BhY2U6NDQzIiwiZmVhdHVyZSI6IkFJUHJvbXB0QVBJTXVsdGltb2RhbElucHV0IiwiZXhwaXJ5IjoxNzc0MzEwNDAwfQ==">
<!-- favicon images -->
<link rel="apple-touch-icon" sizes="180x180" href="/assets/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon-16x16.png">
<link rel="manifest" href="/assets/site.webmanifest">
{% assign description = page.description | default: site.description %}
<!-- 🥰 https://metatags.io/ -->
<!-- Primary Meta Tags -->
{%- capture derivedTitle -%}
{% if page.hack_number %}Hack {{page.hack_number | prepend: '0' | slice: -2, 2 }} – {{page.date | date: '%B %Y' }} |{% else %}{% if page.title %}{{ page.title }} | {% endif %}{% endif %}{{ site.title }}
{%- endcapture -%}
<title>
{{ derivedTitle }}
</title>
<meta name="title" content="{{ derivedTitle }}">
<meta name="description" content="{{ description }}">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://remotehack.space/">
<meta property="og:title" content="{{ derivedTitle }}">
<meta property="og:description" content="{{ description }}">
<meta property="og:image" content="/images/RH-social-landscape.jpg">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://remotehack.space/">
<meta property="twitter:title" content="{{ derivedTitle }}">
<meta property="twitter:description" content="{{ description }}">
<meta property="twitter:image" content="https://remotehack.space/images/RH-social-square.jpg">
</head>
<body{% if page.body_class %} class="{{page.body_class}}" {% endif %}>
<nav class="🗺">
<a href="/"> / </a>
{% unless page.hide_page_links %}
<a href="/code-of-conduct/"> Conduct </a>
<a href="/about/"> About </a>
<a href="/previous-hacks/"> Previous Hacks </a>
<a href="/podcast/"> Podcast </a>
{% endunless %}
</nav>
<script src="/assets/nav-current.js" defer></script>
<script src="/assets/local-time.js" defer></script>
{% if page.show_header %}
<header>
<div class="⏹">
<h1 class="⭐️">
<span class="🏘">Remote</span>
<span class="💥"><span>Hack</span></span>
</h1>
</div>
<div>
<img src="/images/pi-small.jpg" alt="A raspberry pi looking like an old computer" width="1197" height="1197" />
</div>
</header>
{% endif %}
<main>
{% if page.title and page.show_title %}<h1>{{ page.title }}</h1>{% endif %}
{{ content }}
{% if page.show_header %}
<footer>
<ul class="🔗">
<li>
Header image – <a href="https://back7.co/home/raspberry-pi-recovery-kit" rel="noopener noreferrer">The Raspberry Pi Recovery Kit</a>
</li>
<li>
Site hosted with <a href="https://github.com" rel="noopener noreferrer">Github</a>. {% if site.github %}View the <a href="{{ site.github.repository_url }}" rel="noopener noreferrer">source repository</a>.{% endif %}
</li>
</ul>
</footer>
{% endif %}
</main>
</body>
</html>