From e618c3f52c1c4ae161650679cda24eecbba579bb Mon Sep 17 00:00:00 2001 From: Minteck Date: Sat, 4 Dec 2021 10:58:59 +0100 Subject: Code is now more cute! --- htdocs/public/projects/index.ejs | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 htdocs/public/projects/index.ejs (limited to 'htdocs/public/projects') diff --git a/htdocs/public/projects/index.ejs b/htdocs/public/projects/index.ejs deleted file mode 100644 index 88749f9..0000000 --- a/htdocs/public/projects/index.ejs +++ /dev/null @@ -1,35 +0,0 @@ -<% global.title = "Projects"; %> -<%- include(`${private}/header.ejs`) %> - -← Go back home - -
- -

Projects

-

This is the page where all my active projects are, it is regularly updated from the projects I created on source.minteck.org. For projects I don't maintain - anymore, refer to the Archives page.

- -
- <% for (let project of JSON.parse(fs.readFileSync(serverRoot + "/global/gitea.json").toString()).sort((a, b) => a.update - b.update).reverse()) { %> -
- "> -

<%- project.name %>

-

<%- project.description %>

-

- <% if (project.website !== null) { %> - Website - View - <% } else { %> - View - <% } %> -

-
- <% } %> -
- -<%- include(`${private}/footer.ejs`) %> \ No newline at end of file -- cgit