diff --git a/layouts/game/single.html b/layouts/game/single.html
index 75e53a8..db38e5f 100644
--- a/layouts/game/single.html
+++ b/layouts/game/single.html
@@ -74,6 +74,31 @@
Please use the edit button up above to create one.
{{ end }}
+ {{ if gt (len .Params.issues) 0 }}
+ Known Issues
+
+
+
+ Title |
+ Created |
+ Last Updated |
+
+
+
+ {{ $githubUrl := .Site.Params.GithubURL }}
+ {{ range .Params.issues }}
+
+
+ {{ .title }}
+ |
+ {{ dateFormat "January 2, 2006" .created_at }} |
+ {{ dateFormat "January 2, 2006" .updated_at }} |
+
+ {{ end }}
+
+
+ {{ end }}
+
Compatibility
{{ if gt (len .Params.testcases) 0 }}
@@ -112,31 +137,6 @@
This game is untested. Please play through this game and report your compatibility with this title.
{{ end }}
- {{ if gt (len .Params.issues) 0 }}
- Known Issues
-
-
-
- Title |
- Created |
- Last Updated |
-
-
-
- {{ $githubUrl := .Site.Params.GithubURL }}
- {{ range .Params.issues }}
-
-
- {{ .title }}
- |
- {{ dateFormat "January 2, 2006" .created_at }} |
- {{ dateFormat "January 2, 2006" .updated_at }} |
-
- {{ end }}
-
-
- {{ end }}
-
{{ if gt (len .Params.savefiles) 0 }}
Savefiles
diff --git a/layouts/page/bounties.html b/layouts/page/bounties.html
new file mode 100644
index 0000000..58c6618
--- /dev/null
+++ b/layouts/page/bounties.html
@@ -0,0 +1,59 @@
+{{ define "main" }}
+
+
+ {{ .Title }}
+
+ {{ .Content }}
+
+
+
+
+
+ Date Submitted |
+ Requester |
+ Developer |
+ Status |
+ Amount |
+ Description |
+ Payment Status |
+ Developer Response |
+ Date Expires |
+
+
+
+ {{ range .Site.Data.bounties }}
+
+
+ {{ .DateSubmitted }}
+ |
+
+ {{ .Requester }}
+ |
+
+ {{ .Developer }}
+ |
+
+ {{ .Status }}
+ |
+
+ {{ .Amount }}
+ |
+
+ {{ .Description }}
+ |
+
+ {{ .PaymentStatus }}
+ |
+
+ {{ .DeveloperResponse }}
+ |
+
+ {{ .DateExpires }}
+ |
+
+ {{ end }}
+
+
+
+
+{{ end }}