xesite/templates/signalboost.html

31 lines
927 B
HTML
Raw Normal View History

2020-03-18 20:45:55 +00:00
{{ define "title" }}
<title>Signal Boosts - Christine Dodrill</title>
{{ end }}
{{ define "content" }}
<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>signalboost.dhall</code>.</p>
{{/* 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>
{{/* end COVID-19 note */}}
<h2>People</h2>
2020-06-28 01:00:12 +00:00
<div class="grid signalboost">
2020-03-18 20:45:55 +00:00
{{ range . }}
<div class="cell -4of12 content">
<big>{{ .Name }}</big>
<p>{{ range .Tags }}{{ . }} {{ end }}</p>
<a href="{{ .GitLink }}">GitHub</a> - <a href="{{ .Twitter }}">Twitter</a>
</div>
{{ end }}
</div>
{{ end }}