-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
179 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
_events/online-book-review-tech-workers-guide-to-unions.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
title: "Online book review: Tech Worker's Guide to Unions " | ||
date: 2024-03-26T18:00:00.000Z | ||
timezone: | ||
- Europe/Berlin | ||
hide_form: false | ||
--- | ||
In this 90 minute online-call, you will learn more about "[The Tech Worker's Guide to Unions](https://www.amazon.de/Tech-Workers-Guide-Unions/dp/9083386945)" book by Janneke Parrish, about their experiences organizing [\#AppleTogether](https://appletogether.org/) and supporting other tech companies in workplace organizing. | ||
|
||
In 2021, Apple fired Janneke for their work #AppleToo, a movement that brought the discrimination, harassment, and retaliation that many Apple workers were experiencing to light. Since then, they've continued to found the solidarity union #AppleTogether which connects Apple organizing initiatives around the world together. | ||
|
||
Whether you're newly interested in unionizing, or a veteran organizer, this online call is for you! This talk will be streamed and recorded. Detailed to be announced! [Mandatory registration over Zoom](https://us02web.zoom.us/meeting/register/tZcpd--sqzkqHtUUvK-u-vexE6hsAby7T1rs) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,6 +50,9 @@ home: | |
description: | | ||
<p>We’re also happy to chat, answer any questions you might have, or hear about any social justice efforts in which you need a partner. <a href="mailto:[email protected]">Send us an email.</a></p> | ||
<p>If you’re a member of the press, please get in touch with us through <a href="mailto:[email protected]">[email protected].</a></p> | ||
events: | ||
title: Recent events | ||
more: Find more events | ||
|
||
job_board: | ||
title: "Job Board 🌹" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{% assign date = include.date %} | ||
{% assign local_hours = date | date: '%HH' | times: 60%} | ||
{% assign offset = date | date: '%z' | slice: 2 | times: 60 %} | ||
{% assign hours = local_hours | minus: offset | divided_by: 60 %} | ||
<a target="_blank" href="https://www.timeanddate.com/worldclock/converter.html?iso={{date | | ||
date: '%Y%m%d'}}T{{hours}}{{date | date: ':%M'}}00&p1=179&p2=224&p3=37">{{ date | date: '%R %Z'}}<a/> | ||
{{ date | date: '%A, %d %B %Y ' }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
|
||
<article class="event-card marg-b-4 flex items-center"> | ||
<div class="bg-black circ lh-1"> | ||
<svg | ||
focusable="false" | ||
xmlns="http://www.w3.org/2000/svg" | ||
xmlns:xlink="http://www.w3.org/1999/xlink" | ||
x="0px" | ||
y="0px" | ||
viewBox="0 0 24 24" | ||
class="event-card__icon card-icon" | ||
style="enable-background:new 0 0 24 24;" | ||
xml:space="preserve" | ||
> | ||
<path d="M20,3h-1V1h-2v2H7V1H5v2H4C2.9,3,2,3.9,2,5v16c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,21H4V8h16V21z"/> | ||
<text transform="matrix(1 0 0 1 5.3281 19.1641)" class="st0 st1">{{ event.date | date: "%d" }}</text> | ||
</svg> | ||
</div> | ||
<div | ||
class="event-card__info-column l-stack -vertical" | ||
style="--stack-spacing: 0.25rem" | ||
> | ||
<time | ||
class="aside event-card__date" | ||
datetime="{{ event.date }}" | ||
>{{ event.date | date: "%A, %d %b %Y %R %Z" }}</time> | ||
{% if include.limit %} | ||
<h3 class="event-card__title"> | ||
<a href="{{ event.url }}" class="event-card__link">{{ event.title }}</a> | ||
</h3> | ||
{% else %} | ||
<h2 class="event-card__title"> | ||
<a href="{{ event.url }}" class="event-card__link">{{ event.title }}</a> | ||
</h2> | ||
{% endif %} | ||
</div> | ||
</article> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{% unless page.permalink == "/events" %} | ||
<a href="/events">{% t home.events.more %}</a> | ||
{% endunless %} | ||
{% assign events = site.events | filter_tags: include.tags | reverse %} | ||
{% assign future_events = events | where_exp: "event", "event.date >= site.time" %} | ||
|
||
{% if include.limit and future_events.size > 0 %} | ||
{% for event in future_events reversed limit: include.limit %} | ||
{% include event-card.html %} | ||
{% endfor %} | ||
{% else %} | ||
{% for event in events limit: include.limit %} | ||
{% include event-card.html %} | ||
{% endfor %} | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
layout: default | ||
--- | ||
<style>h1, .main-wrapper h2, h3 {text-align: left; font-weight: bold;}</style> | ||
<article class="post"> | ||
<a href="/events">{%t home.events.more %}</a> | ||
<h1 class="post-title">{{ page.title | escape }}</h1> | ||
<div class="post-content"> | ||
<h3> | ||
📆 {% include date_format.html date=page.date %} | ||
</h3> | ||
|
||
{{ content }} | ||
</div> | ||
</article> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
layout: page | ||
permalink: /events | ||
languages: ["en"] | ||
--- | ||
<h1>Tech Worker Events</h1> | ||
Explore all <b>{{site.events.size}}</b> public events we organized | ||
{% include events.html %} |