From 9477b8137a906dfa7a5ddc1a615840c43f9f6be6 Mon Sep 17 00:00:00 2001 From: h Date: Tue, 25 Nov 2025 20:09:45 +0100 Subject: [PATCH] feat(templates): add projects page --- .gitignore | 2 + README.md | 1 + templates/custom/extra_links.tmpl | 3 + templates/custom/portfolio.tmpl | 512 ++++++++++++++++++++++++++++++ templates/home.tmpl | 3 + templates/status/404.tmpl | 3 + 6 files changed, 524 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 templates/custom/extra_links.tmpl create mode 100644 templates/custom/portfolio.tmpl create mode 100644 templates/home.tmpl create mode 100644 templates/status/404.tmpl diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b26a482 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +repomix-output.xml +conf/ \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..f328194 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# Gitea themes + main page for git.kotikot.com diff --git a/templates/custom/extra_links.tmpl b/templates/custom/extra_links.tmpl new file mode 100644 index 0000000..a183573 --- /dev/null +++ b/templates/custom/extra_links.tmpl @@ -0,0 +1,3 @@ +{{if .IsSigned}} + projects +{{end}} diff --git a/templates/custom/portfolio.tmpl b/templates/custom/portfolio.tmpl new file mode 100644 index 0000000..ce0244b --- /dev/null +++ b/templates/custom/portfolio.tmpl @@ -0,0 +1,512 @@ +
+
+
+

+ {{AppName}} +

+

+ hi there. explore our projects below. +

+
+ +
+
+
+ + + +
+
+ +
+ +
+ +
+
+ + +
+
+ +
+ +
+
+ +
loading portfolio...
+ + + +
+
+ +
+
+ + + + diff --git a/templates/home.tmpl b/templates/home.tmpl new file mode 100644 index 0000000..8dfd8a5 --- /dev/null +++ b/templates/home.tmpl @@ -0,0 +1,3 @@ +{{template "base/head" .}} +{{template "custom/portfolio" .}} +{{template "base/footer" .}} diff --git a/templates/status/404.tmpl b/templates/status/404.tmpl new file mode 100644 index 0000000..8dfd8a5 --- /dev/null +++ b/templates/status/404.tmpl @@ -0,0 +1,3 @@ +{{template "base/head" .}} +{{template "custom/portfolio" .}} +{{template "base/footer" .}}