-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathhack.html
More file actions
36 lines (30 loc) · 1.42 KB
/
hack.html
File metadata and controls
36 lines (30 loc) · 1.42 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
---
layout: default
---
{% comment %}We use prepend and slice to pad the hack number with "0"s. This will trim the hack number to 2 characters if we go over 100 hacks{% endcomment %}
<h1>
Hack {{page.hack_number | prepend: '0' | slice: -2, 2 }} – {{page.date | date: '%B %Y' }}
</h1>
{% assign pagesize = page.content | size %}
{% if pagesize < 2 %}
{%- capture content -%}
{% assign start_time = page.date | slice:0,10 | append:"T08:30Z" %}
This hack is happening on <time style="font-weight: bold;" datetime="{{start_time}}">{{ start_time| date_to_long_string }}<span class="local-time">
<noscript>
{{ start_time | date: "%k:%M%P %Z" }}
</noscript>
</span>
</time>
What do you need to do in advance?
- → Read our [Code of Conduct](/code-of-conduct).
- → Add [Remote Hack](/calendar.ics) to your calendar.
- → Drop by our [Slack group](/join) and say hi.
- → Browse some hack ideas on [GitHub](https://github.com/remotehack/remotehack.github.io/issues).
- → Listen to some [Airquotes The Podcast Airquotes](https://remotehack.space/live/) recordings from our previous Remote Hacks.
We will be using Discord for most of the chatter on the day, so make sure your camera, lighting, and microphone setup are good -- Here's a [handy guide](https://checklist.video/checklist/)
We look forward to seeing you there!
{%- endcapture -%}
{{ content | markdownify}}
{% else %}
{{ content }}
{% endif %}