diff --git a/src/templates/src/project_index.html b/src/templates/src/project_index.html index 829df2a..6aa3750 100644 --- a/src/templates/src/project_index.html +++ b/src/templates/src/project_index.html @@ -68,26 +68,10 @@
{{ if not .UserPendingProject }}
-

Submit a Project

-
your-project-here.handmade.network
+

Project submissions are closed

- Developing something cool? Building a tool, game, website, etc. - that meshes with the Handmade philosophy? + We are reworking the way we approach projects on the network. In the meantime feel free to share your work on the forums or on our Discord.

- {{ if .User }} -

- Submit a Project -

- {{ else }} -

- Become a member now to submit a project to the site! -

-

- Register - or - Log In -

- {{ end }}
{{ else }}
diff --git a/src/website/projects.go b/src/website/projects.go index f1facd8..8be835e 100644 --- a/src/website/projects.go +++ b/src/website/projects.go @@ -30,10 +30,7 @@ type ProjectTemplateData struct { UserApprovedProjects []templates.Project ProjectAtomFeedUrl string - ManifestoUrl string - NewProjectUrl string - RegisterUrl string - LoginUrl string + WIPForumUrl string } func ProjectIndex(c *RequestContext) ResponseData { @@ -195,10 +192,7 @@ func ProjectIndex(c *RequestContext) ResponseData { UserApprovedProjects: userApprovedProjects, ProjectAtomFeedUrl: hmnurl.BuildAtomFeedForProjects(), - ManifestoUrl: hmnurl.BuildManifesto(), - NewProjectUrl: hmnurl.BuildProjectNew(), - RegisterUrl: hmnurl.BuildRegister(), - LoginUrl: hmnurl.BuildLoginPage(c.FullUrl()), + WIPForumUrl: hmnurl.BuildForum(models.HMNProjectSlug, []string{"wip"}, 1), }, c.Perf) return res }