blob: 982cd9d6bbb35693bd780f6375f91d5c2016a641 (
plain)
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
|
@use super::{header_html, footer_html};
@use crate::signalboost::Person;
@(people: Vec<Person>)
@:header_html(Some("Signal Boosts"), None)
<h1>Signal Boosts</h1>
<p>These awesome people are currently looking for a job. If you are looking for anyone with these skills, please feel free to reach out to them.</p>
<p>To add yourself to this list, fork <a href="https://github.com/Xe/site">this website's source code</a> and send a pull request with edits to <code>/dhall/signalboost.dhall</code>.</p>
<!-- TODO(Xe): Remove this after COVID-19 is less of a thing -->
<p>With COVID-19 raging across the world, these people are in need of a job now more than ever.</p>
<h2>People</h2>
<div class="grid signalboost">
@for person in people {
<div class="cell -4of12 content">
<big>@person.name</big>
<p>@for tag in person.tags { @tag }</p>
@if person.git_link.is_some() {
<a href="@person.git_link.unwrap()">GitHub</a>
}
@if person.twitter.is_some() {
<a href="@person.twitter.unwrap()">Twitter</a>
}
@if person.linkedin.is_some() {
<a href="#person.linkedin.unwrap()">LinkedIn</a>
}
@if person.fediverse.is_some() {
<a href="@person.fediverse.unwrap()">Fediverse</a>
}
@if person.cover_letter.is_some() {
<a href="@person.cover_letter.unwrap()">Cover letter</a>
}
@if person.website.is_some() {
<a href="@person.website.unwrap()">Website</a>
}
</div>
}
</div>
@:footer_html()
|