-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
124 lines (123 loc) · 4.86 KB
/
Copy pathindex.html
File metadata and controls
124 lines (123 loc) · 4.86 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
---
layout: homepage
title: Organizing Resources for Tech Workers Confronting AI
subtitle: Frustrated by your employer's generative AI policies? We're here to help you organize. We're uniting tech workers who recognize the consequences of employers rolling out AI policies without the input of their workers. Workers are not helpless in the face of these top-down initiatives — we have the tools to demand our seat at the table, and to have our say in how technology is implemented and deployed in our workplaces.
---
<div class="content">
<div class="row lt800">
<div class="column column-header">
<div class="space-between">
<span>Latest Articles</span>
<a class="see-all" href="{{ site.url }}{{ site.baseurl}}/tags/#articles">
<h6>All Articles ></h6>
</a>
</div>
<hr />
</div>
</div>
<div class="row lt800">
{% for post in site.posts limit:2 %}
{% if post.private == true %}
{% continue %}
{% endif %}
<div class="column articles">
<div class="homepage-post articles">
<a href="{{ site.baseurl }}{{ post.url }}">
<div>
<div class="title">{{ post.title }}</div>
<div class="subtitle">{{ post.subtitle }}</div>
<div class="post-date">{{ post.date | date: "%d %B %Y" }}</div>
</div>
{% if post.image %}
<img id="{{ post.homepageImageId }}" src="{{ post.image }}" alt="{{ post.title }}"
class="homepage-post-image" />
{% endif %}
</a>
</div>
</div>
<hr class="lt650"/>
{% endfor %}
</div>
<div class="row">
<div class="column column-header resources">
<div class="space-between">
<span>Resources</span>
<a class="see-all" href="{{ site.url }}{{ site.baseurl}}/tags/#resources">
<h6>All Resources ></h6>
</a>
</div>
<hr />
</div>
<div class="column column-header articles gt800">
<div class="space-between">
<span>Articles</span>
<a class="see-all" href="{{ site.url }}{{ site.baseurl}}/tags/#articles">
<h6>All Articles ></h6>
</a>
</div>
<hr />
</div>
</div>
<div class="row">
<div class="column resources">
{% for post in site.resources reversed limit:5 %}
{% if post.private == true %}
{% continue %}
{% endif %}
<div class="homepage-post">
<div class="post-header">
<a class="title" href="{{site.baseurl}}{{ post.url }}">
{{ post.title }}
</a>
<!--
<div class="details">
<b>{{ post.date | date: "%d %B %Y" }}</b>
<br>
{% if post.tags %}
[
{% for tag in post.tags %}
<a class="post-tags" href="{{ site.baseurl }}/tags/#{{ tag }}">{{ tag }}</a>{% if forloop.last
== false %},{% endif %}
{% endfor %}
]
{% endif %}
</div> -->
</div>
<div class="subtitle">
{{ post.subtitle }}
</div>
<div class="excerpt">
{{ post.excerpt }}
</div>
</div>
{% if forloop.last == false %}
<hr>
{% endif %}
{% endfor %}
</div>
<div class="column articles gt800">
{% for post in site.posts limit:5 %}
{% if post.private == true %}
{% continue %}
{% endif %}
<div class="homepage-post articles">
<a href="{{ site.baseurl }}{{ post.url }}">
<div>
<div class="title">{{ post.title }}</div>
<div class="subtitle">{{ post.subtitle }}</div>
<div class="post-date">{{ post.date | date: "%d %B %Y" }}</div>
</div>
{% if post.image %}
<img id="{{ post.homepageImageId }}" src="{{ post.image }}" alt="{{ post.title }}"
class="homepage-post-image" />
{% endif %}
</a>
</div>
{% if forloop.last == false %}
<hr>
{% endif %}
{% endfor %}
</div>
</div>
<img src="https://twc.goatcounter.com/count?p=workersdecide">
</div>