diff --git a/blog/freelancer_menu/freelancer_menu.templ b/blog/freelancer_menu/freelancer_menu.templ index 2853892..cf4d076 100644 --- a/blog/freelancer_menu/freelancer_menu.templ +++ b/blog/freelancer_menu/freelancer_menu.templ @@ -32,12 +32,17 @@ templ FreelancerMenuT() {

Page dedicated to gathering links related to Freelancer (2003) game.

- @Articles(articles.ArticleDiscoLinux,articles.ArticleFreelancerVanillaLinux, articles.ArticleFreelancerHDLinux, articles.ArticleAllShortestPaths) + @Articles(articles.ArticleDiscoLinux, + articles.ArticleFreelancerVanillaLinux, + articles.ArticleFreelancerHDLinux, + articles.ArticleAllShortestPaths, + ) @Tools( pet_projects.ProjectDarkstat, pet_projects.ProjectDarkbot, pet_projects.ProjectDarklint, pet_projects.ProjectConfigs, + pet_projects.ProjectServerVanilla, )

Contacts

see here diff --git a/blog/pet_projects/pet_projects.templ b/blog/pet_projects/pet_projects.templ index 1363a85..286a9b0 100644 --- a/blog/pet_projects/pet_projects.templ +++ b/blog/pet_projects/pet_projects.templ @@ -108,6 +108,12 @@ var ProjectBlog *PetProject = NewPetProject( WithGithub(pet_projects_urls.Blog), ) +var ProjectServerVanilla *PetProject = NewPetProject( + "Dockerizer Freelancer Server", + "fl-server-vanilla", + WithGithub(pet_projects_urls.FlServerVanilla), + ) + templ PetProjectsT() { @common.Html5(common.HtmlOptions{ Title: "Pet projects", @@ -256,7 +262,7 @@ templ PetProjectsT() { The ORM provides static typed access to the data, the code is abe to distinguish int/str/float types. The project is reused as library for fl-darklint and fl-darkstat. Also intended for applying to fl-darkmap future project. } - } + }

diff --git a/blog/pet_projects/pet_projects_urls/urls.go b/blog/pet_projects/pet_projects_urls/urls.go index 0fd13c5..8b75a2d 100644 --- a/blog/pet_projects/pet_projects_urls/urls.go +++ b/blog/pet_projects/pet_projects_urls/urls.go @@ -1,10 +1,11 @@ package pet_projects_urls const ( - Autogit = "https://github.com/darklab8/autogit" - Blog = "https://github.com/darklab8/blog" - GoTypelog = "https://github.com/darklab8/go-typelog" - PyTypelog = "https://github.com/darklab8/py-typelog" - Infra = "https://github.com/darklab8/infra" - Argocue = "https://github.com/darklab8/argocd-cue" + Autogit = "https://github.com/darklab8/autogit" + Blog = "https://github.com/darklab8/blog" + GoTypelog = "https://github.com/darklab8/go-typelog" + PyTypelog = "https://github.com/darklab8/py-typelog" + Infra = "https://github.com/darklab8/infra" + Argocue = "https://github.com/darklab8/argocd-cue" + FlServerVanilla = "https://github.com/darklab8/fl-server-vanilla" )