2020-07-16 19:32:30 +00:00
@use super::{header_html, footer_html};
@use crate::signalboost::Person;
@(people: Vec< Person > )
@:header_html(Some("Signal Boosts"), None)
2020-03-18 20:45:55 +00:00
< 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 >
2022-06-14 19:04:17 +00:00
< 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 >
2020-03-18 20:45:55 +00:00
2020-07-16 19:32:30 +00:00
<!-- TODO(Xe): Remove this after COVID - 19 is less of a thing -->
2020-03-18 20:45:55 +00:00
< p > With COVID-19 raging across the world, these people are in need of a job now more than ever.< / p >
< h2 > People< / h2 >
2020-06-28 01:00:12 +00:00
< div class = "grid signalboost" >
2020-07-16 19:32:30 +00:00
@for person in people {
< div class = "cell -4of12 content" >
< big > @person.name< / big >
< p > @for tag in person.tags { @tag }< / p >
2022-04-02 16:47:54 +00:00
@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 >
}
2020-07-16 19:32:30 +00:00
< / div >
}
2020-03-18 20:45:55 +00:00
< / div >
2020-07-16 19:32:30 +00:00
@:footer_html()