diff --git a/content/hiring/2018-05-java-developer.md b/content/hiring/2018-05-java-developer.md
index f54b91046ffa754dfe225cf82e91ded3212a9ea3..7018ab2e416f9d1c4e6279644fa278dac584a843 100644
--- a/content/hiring/2018-05-java-developer.md
+++ b/content/hiring/2018-05-java-developer.md
@@ -1,6 +1,7 @@
 ---
 title: Java Developer
 date: 2018-05-01T00:00:00+01:00
+hide: 1
 ---
 
 Sorry, this position is no longer available. If you'd like to hear about
diff --git a/content/hiring/2018-05-usability-consultant.md b/content/hiring/2018-05-usability-consultant.md
index 0d3945d0b8dd42b8d2ad3f9834de6fb846f36d09..b2c3e26e2e0d56efbd395f626f32d750683232ec 100644
--- a/content/hiring/2018-05-usability-consultant.md
+++ b/content/hiring/2018-05-usability-consultant.md
@@ -1,6 +1,7 @@
 ---
 date: 2018-05-01T00:00:00+02:00
 title: Usability Consultant
+hide: 1
 ---
 
 Sorry, this position is no longer available. If you'd like to hear about
diff --git a/content/hiring/2018-05-ux-designer.md b/content/hiring/2018-05-ux-designer.md
index d57b4a2b632fe35e69a2416a6b0595d95613fed8..4322ac343696fe24b788ebf69ea7dfba426ee2ff 100644
--- a/content/hiring/2018-05-ux-designer.md
+++ b/content/hiring/2018-05-ux-designer.md
@@ -1,6 +1,7 @@
 ---
 date: 2018-05-01T00:00:00+01:00
 title: UX Designer
+hide: 1
 ---
 
 Sorry, this position is no longer available. If you'd like to hear about
diff --git a/content/hiring/_index.md b/content/hiring/_index.md
new file mode 100644
index 0000000000000000000000000000000000000000..b45e4783a6a4a2e31f72144a41ee823216694c66
--- /dev/null
+++ b/content/hiring/_index.md
@@ -0,0 +1,7 @@
+---
+aliases:
+- /hiring.html
+title: Jobs
+---
+
+The Briar project is looking for the following people to join the team:
\ No newline at end of file
diff --git a/content/page/hiring.md b/content/page/hiring.md
deleted file mode 100644
index b377951f6f4fe34243865958006abe15ecbf3879..0000000000000000000000000000000000000000
--- a/content/page/hiring.md
+++ /dev/null
@@ -1,14 +0,0 @@
----
-aliases:
-- /hiring.html
-title: Sorry, We're Not Currently Hiring
----
-
-We don't currently have any paid positions available. If you'd like to
-hear about future vacancies, please email {{<contactemail>}}.
-
-If you're interested in getting involved as a volunteer, please [join
-the development mailing
-list](https://lists.sourceforge.net/lists/listinfo/briar-devel).
-Translators can volunteer through our [Transifex
-project](https://transifex.com/otf/briar).
diff --git a/themes/briar/layouts/_default/section.html b/themes/briar/layouts/_default/section.html
index a7fc36f52b8cd7a2aebda1e0e421290e1047cf20..c62f56c7f79c6c890545765f65ebfc3a3619a1c3 100644
--- a/themes/briar/layouts/_default/section.html
+++ b/themes/briar/layouts/_default/section.html
@@ -1,14 +1,16 @@
 {{ define "main" }}
-<h1>{{ with .Title }} {{ . }} {{ else }} {{ .Site.Title }} {{ end }}</h1>
-{{ range first 10 .Pages.ByDate.Reverse }}
-<h3 itemprop="headline" class="blog-post-title">
-  <a href="{{.Permalink}}">{{.Title}}</a>
-</h3>
-<p class="blog-post-meta">{{.Date.Format "2006-01-02"}}
-{{ if (isset .Params "author") }}
-by {{ markdownify .Params.author }}
-{{ end }}
-</p>
-{{ end }}
-{{ .Content }}
+  <h1>{{ with .Title }} {{ . }} {{ else }} {{ .Site.Title }} {{ end }}</h1>
+  {{ .Content }}
+  {{ range .Pages.ByDate.Reverse }}
+    {{ if not .Params.hide }}
+      <h3 itemprop="headline" class="blog-post-title">
+        <a href="{{.Permalink}}">{{.Title}}</a>
+      </h3>
+      <p class="blog-post-meta">{{.Date.Format "2006-01-02"}}
+        {{ if (isset .Params "author") }}
+          by {{ markdownify .Params.author }}
+        {{ end }}
+      </p>
+    {{ end }}
+  {{ end }}
 {{ end }}