aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorChristine Dodrill <me@christine.website>2020-03-18 16:45:55 -0400
committerGitHub <noreply@github.com>2020-03-18 16:45:55 -0400
commit7dc75b17a4c38c312ef87412273b3d7636746a1b (patch)
tree57502a097318be6ef6f24aeb6968ccb6eb51f3fa /templates
parent207f6a32f578f0465af6c2788b4c5cb02d1ad5ba (diff)
downloadxesite-7dc75b17a4c38c312ef87412273b3d7636746a1b.tar.xz
xesite-7dc75b17a4c38c312ef87412273b3d7636746a1b.zip
signal boost page (#128)
Diffstat (limited to 'templates')
-rw-r--r--templates/base.html3
-rw-r--r--templates/signalboost.html30
2 files changed, 32 insertions, 1 deletions
diff --git a/templates/base.html b/templates/base.html
index ad0d099..c250dc0 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -68,7 +68,8 @@
<footer>
<blockquote>Copyright 2020 Christine Dodrill. Any and all opinions listed here are my own and not representative of my employers; future, past and present.</blockquote>
<br />
- <p>Like what you see? Donate on <a href="https://www.patreon.com/cadey">Patreon</a> like <a href="/patrons">these awesome people</a>!</p>
+ {{/* <p>Like what you see? Donate on <a href="https://www.patreon.com/cadey">Patreon</a> like <a href="/patrons">these awesome people</a>!</p> */}}
+ <p>Looking for someone for your team? Take a look <a href="/signalboost">here</a>.</p>
</footer>
<script>
diff --git a/templates/signalboost.html b/templates/signalboost.html
new file mode 100644
index 0000000..e128867
--- /dev/null
+++ b/templates/signalboost.html
@@ -0,0 +1,30 @@
+{{ 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>
+
+<div class="grid">
+ {{ 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 }}